debug generate coverage report
Some checks failed
Declarative Tests / test (push) Failing after 58s

This commit is contained in:
Matthew Rich 2024-03-23 17:19:13 -07:00
parent ec5118279d
commit da8f89fea3

View File

@ -33,6 +33,10 @@ jobs:
- run: echo "This job's status is ${{ job.status }}."
- name: coverage report
run: |
go tool cover -html=artifacts/coverage.profile -o artifacts/coverage.html
cat artifacts/coverage.html
go tool cover -html=artifacts/coverage.profile -o artifacts/code-coverage.html
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: artifacts/code-coverage.html
- run: echo "This job's status is ${{ job.status }}."