Skip to content

Commit

Permalink
ci: tap => xml
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Oct 1, 2024
1 parent 6fdf037 commit ac87c35
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ jobs:
run: |
nf-test test \
--ci \
--tap=test.tap \
--junitxml="TEST-${{ matrix.filter }}_${{ matrix.profile }}_${{ matrix.shard }}.xml" \
--verbose \
--shard ${{ matrix.shard }}/${{ strategy.job-total }} \
--changed-since HEAD^ \
--profile "+${{ matrix.profile }}" \
--filter ${{ matrix.filter }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: test.xml
report_paths: "TEST-*.xml"

0 comments on commit ac87c35

Please sign in to comment.