Skip to content

Commit

Permalink
Readd coveralls integration
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueMonday committed Jan 31, 2024
1 parent 13812d8 commit 45eddc7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,12 @@ jobs:
run: go build -v ./...

- name: Test
run: go test -v ./...
run: go test -v -race -covermode atomic -coverprofile=covprofile ./...

- name: Install goveralls
run: go install github.com/mattn/goveralls@latest

- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github

0 comments on commit 45eddc7

Please sign in to comment.