Skip to content

Commit

Permalink
fix: Coveralls uploader
Browse files Browse the repository at this point in the history
  • Loading branch information
ipfans committed Apr 24, 2022
1 parent 07d6b45 commit 756975d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile.out -service=github
run: goveralls -coverprofile=coverage.txt -service=github
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ dotenv: [".env"]
tasks:
default:
cmds:
- go test -v -race -timeout 10m -coverprofile=coverage.txt -cover ./...
- go test -v -race -timeout 10m -covermode atomic -coverprofile=coverage.txt -cover ./...
- go tool cover -func coverage.txt

integration:
cmds:
- go test -v -race -timeout 10m -tags integration -coverprofile=coverage.txt -cover -failfast ./...
- go test -v -race -timeout 10m -tags integration -covermode atomic -coverprofile=coverage.txt -cover -failfast ./...
- go tool cover -func coverage.txt

0 comments on commit 756975d

Please sign in to comment.