Skip to content

Commit

Permalink
Expose JUnit files in CI as an artifact
Browse files Browse the repository at this point in the history
This will make it easier to debug test files that have, for whatever reason,
not been uploaded.
  • Loading branch information
michelletran-codecov committed Dec 6, 2024
1 parent 92eeeab commit d9ec9d0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ jobs:
if: ${{ !cancelled() && inputs.run_integration == true }}
run: |
make test_env.run_integration
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: junitfiles
path: *junit*
## Don't upload on forks for now.
- name: upload using codecovcli
if: ${{ !cancelled() && !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}
Expand Down

0 comments on commit d9ec9d0

Please sign in to comment.