Skip to content

Commit e81fdc8

Browse files
Copilotnomeguy
andcommitted
Fix CI error by using go install instead of go get with GO111MODULE=off
Co-authored-by: nomeguy <85475922+nomeguy@users.noreply.github.com>
1 parent da7a0e3 commit e81fdc8

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)