We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28852ed commit 005b6fbCopy full SHA for 005b6fb
.github/workflows/ci.yml
@@ -78,15 +78,14 @@ jobs:
78
# version: v1.30.0
79
- run: make all
80
- name: Install goveralls
81
- env:
82
- GO111MODULE: off
83
run: |
84
export GOPATH=$GITHUB_WORKSPACE
85
- go get github.com/mattn/goveralls
+ go install github.com/mattn/goveralls@v0.0.12
86
- name: Send coverage
87
env:
88
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89
- run: ./bin/goveralls -coverprofile=coverage.out -service=github
+ run: |
+ ./bin/goveralls -coverprofile=coverage.out -service=github
90
91
goreleaser:
92
name: Goreleaser
0 commit comments