add coverage report step to test workflow

This commit is contained in:
Joel Wetzell
2026-02-09 14:33:20 -06:00
committed by GitHub
parent 8ec8ad91a6
commit 3c6d98638e

View File

@@ -34,4 +34,13 @@ jobs:
run: go mod tidy
- name: run tests
run: go test ./...
run: go test ./...
- name: Update coverage report
uses: ncruces/go-coverage-report@v0.3.2
with:
report: true
chart: true
amend: true
if: github.event_name == 'push'
continue-on-error: true