Skip to content

Commit

Permalink
fix coveralls build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
huandu authored Sep 23, 2024
1 parent 6ccf582 commit 7b591c6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ jobs:
- name: Test
run: go test -v -coverprofile=covprofile.cov ./...

- name: Install goveralls
run: go get github.com/mattn/goveralls

- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile.cov -service=github
run: |
go get github.com/mattn/goveralls
go run github.com/mattn/goveralls -coverprofile=covprofile.cov -service=github

0 comments on commit 7b591c6

Please sign in to comment.