Update coverage profile file name in test workflow

This commit is contained in:
2025-10-16 13:13:23 -05:00
committed by GitHub
parent 8c2a580b75
commit 1bf0c7c0f0
+1 -4
View File
@@ -23,11 +23,8 @@ jobs:
with:
go-version: ^1.23
# When you execute your unit tests, make sure to use the "-coverprofile" flag to write a
# coverage profile to a file. You will need the name of the file (e.g. "coverage.txt")
# in the next step as well as the next job.
- name: Test
run: go test -cover -coverprofile=coverage.txt ./internal/decoders/...
run: go test -cover -coverprofile=decoders_coverage.txt ./internal/decoders/...
- name: Archive code coverage results
uses: actions/upload-artifact@v4