diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/dev-tests.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/dev-tests.yml b/.github/workflows/dev-tests.yml index ec169b4..e183f36 100644 --- a/.github/workflows/dev-tests.yml +++ b/.github/workflows/dev-tests.yml @@ -50,3 +50,10 @@ jobs: - name: Check on failures if: steps.pytest.outcome == 'failure' run: exit 1 + + - name: Upload Coverage Report' + uses: actions/upload-artifact@v4 + with: + name: cov-report + path: coverage.xml + retention-days: 7 |
