Skip to content

Commit

Permalink
Fix coverage stats in CI (#2)
Browse files Browse the repository at this point in the history
The stats reported to coveralls.io were wrong as we did not specify the
coverpkg option.
  • Loading branch information
mristin authored Jun 9, 2023
1 parent b8d04d1 commit d85e0b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
env:
AAS_CORE_3_0_GOLANG_TEST_DATA_DIR: ${{ github.workspace }}/testdata
run: |
go test -covermode atomic -coverprofile=covprofile ./...
go test -covermode atomic -coverpkg=./... -coverprofile=covprofile ./...
- name: Send coverage
env:
Expand Down

0 comments on commit d85e0b1

Please sign in to comment.