diff options
| author | Alex <git@ajschof.me> | 2024-08-22 12:38:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-22 12:38:26 +0100 |
| commit | 45e8ac290cd945515790d0212c90ad456ca0e73e (patch) | |
| tree | b59d381d88a95266053485e38b288055c95c914a /.github/workflows/dev-tests.yml | |
| parent | b4f23ef80edfd4dcd8777eec76b0dfa77430b7a0 (diff) | |
| parent | 46671be246a19bc9d157a00e5ba00e0132ce27cd (diff) | |
| download | de-project-bentley-45e8ac290cd945515790d0212c90ad456ca0e73e.tar.gz de-project-bentley-45e8ac290cd945515790d0212c90ad456ca0e73e.zip | |
Merge pull request #92 from ajschofield/alex/ci-artifact-upload
pr: upload coverage report as artifact
Diffstat (limited to '.github/workflows/dev-tests.yml')
| -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 |
