Skip to content

Commit

Permalink
bring back code coverage checks
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed Apr 28, 2023
1 parent b1123ea commit 3fb3235
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ jobs:
run: |
go mod download
set -x
go test -race -timeout 120s $(go list ./...)
go test -covermode atomic -race -timeout 120s -coverprofile ./coverage.out $(go list ./...)
cov="$(go tool cover -func coverage.out | grep -v 100.0% || true)"
echo $cov
test -z "$cov"

0 comments on commit 3fb3235

Please sign in to comment.