From 1bf0c7c0f010c4eca1f5275c95233f64b9c58dc8 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 16 Oct 2025 13:13:23 -0500 Subject: [PATCH] Update coverage profile file name in test workflow --- .github/workflows/test_decoders.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test_decoders.yaml b/.github/workflows/test_decoders.yaml index 6397e42..cf28e19 100644 --- a/.github/workflows/test_decoders.yaml +++ b/.github/workflows/test_decoders.yaml @@ -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