diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index be6c93a..39dee11 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -24,9 +24,16 @@ jobs: run: make common-deps - name: run tests run: make test-coverage + - name: Archive test and code coverage results + uses: actions/upload-artifact@v4 + with: + name: results + path: | + test/*.xml + **/cover.out - name: report - uses: dorny/test-reporter@v1 if: success() || failure() # run this step even if previous step failed + uses: dorny/test-reporter@v1 with: name: report path: test/*.xml