upload test coverage report
Some checks failed
Go / test (push) Failing after 4s

This commit is contained in:
Adam Jeniski 2025-11-04 13:53:34 -10:00
parent db1bd5f322
commit d4be329cb6

View File

@ -15,4 +15,14 @@ jobs:
go-version-file: go.mod
- name: Test
run: go test mal-go...
run: go test mal-go/... -coverprofile=test-report.out
- name: Generate Report
run: go tool cover -html=test-report.out -o test-coverage.html
- name: Upload Report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: test-coverage.html