Skip to content

Commit 005b6fb

Browse files
switch to go mod based goveralls in CI
1 parent 28852ed commit 005b6fb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Diff for: .github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,14 @@ jobs:
7878
# version: v1.30.0
7979
- run: make all
8080
- name: Install goveralls
81-
env:
82-
GO111MODULE: off
8381
run: |
8482
export GOPATH=$GITHUB_WORKSPACE
85-
go get github.com/mattn/goveralls
83+
go install github.com/mattn/goveralls@v0.0.12
8684
- name: Send coverage
8785
env:
8886
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89-
run: ./bin/goveralls -coverprofile=coverage.out -service=github
87+
run: |
88+
./bin/goveralls -coverprofile=coverage.out -service=github
9089
9190
goreleaser:
9291
name: Goreleaser

0 commit comments

Comments
 (0)