Skip to content

Commit d1a5a35

Browse files
committed
feat: fix CI: use go install for goveralls instead of go get
1 parent 871ffed commit d1a5a35

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ jobs:
1818
- name: Run tests
1919
run: go test -v -coverprofile=./profile.cov ./...
2020
- name: Install goveralls
21-
env:
22-
GO111MODULE: off
23-
run: go get github.com/mattn/goveralls
21+
run: go install github.com/mattn/goveralls@latest
2422

2523
- name: Send coverage
2624
env:

0 commit comments

Comments
 (0)