From 8973783b8bbde50b1b10a0ccfc522474f990f8ed Mon Sep 17 00:00:00 2001 From: ddl-ebrown Date: Sun, 26 May 2024 15:02:07 -0700 Subject: [PATCH] Only archive coverage reports --- .github/workflows/test.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 10ad311..e6ff972 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -27,9 +27,8 @@ jobs: - name: Archive test and code coverage results uses: actions/upload-artifact@v4 with: - name: test-results + name: coverage-results path: | - test/*.xml **/cover.out - name: Produce Summary Report if: always() # run this step even if previous step failed @@ -48,6 +47,6 @@ jobs: steps: - uses: fgrosse/go-coverage-report@v1.0.1 with: - coverage-artifact-name: "test-results" # can be omitted if you used this default value + coverage-artifact-name: "coverage-results" # can be omitted if you used this default value coverage-file-name: "coverage/cover.out" continue-on-error: true