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 e1fc1b4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ jobs:
if: ${{ !cancelled() && inputs.run_integration == true }}
run: |
make test_env.run_integration
- name: Expose JUnit files for debugging purposes
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: junit_files
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 e1fc1b4

Please sign in to comment.