Skip to content

Commit b890ad6

Browse files
Expose JUnit files in CI as an artifact
This will make it easier to debug test files that have, for whatever reason, not been uploaded.
1 parent 92eeeab commit b890ad6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ jobs:
5252
if: ${{ !cancelled() && inputs.run_integration == true }}
5353
run: |
5454
make test_env.run_integration
55+
- uses: actions/upload-artifact@v4
56+
if: ${{ !cancelled() }}
57+
with:
58+
name: junitfiles
59+
path: ./*junit*.xml
5560
## Don't upload on forks for now.
5661
- name: upload using codecovcli
5762
if: ${{ !cancelled() && !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}

0 commit comments

Comments
 (0)