Skip to content

Commit

Permalink
Continue even if step fails
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSPoon committed Aug 14, 2024
1 parent cdd27b2 commit d55e50b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ jobs:
python scripts/into_junit.py /tmp/SHARED.UNITS > junit.xml
- name: Convert JUnit XML to Standard HTML Report
continue-on-error: true # Continue even if this step fails
run: |
junit2html junit.xml junit-standard-report.html
- name: Convert JUnit XML to Matrix HTML Report
continue-on-error: true # Continue even if this step fails
run: |
junit2html --report-matrix junit-matrix-report.html junit.xml
Expand All @@ -49,7 +51,7 @@ jobs:
with:
name: junit-report
path: junit.xml

- name: Upload Standard HTML Report
uses: actions/upload-artifact@v3
with:
Expand All @@ -61,8 +63,9 @@ jobs:
with:
name: junit-matrix-html-report
path: junit-matrix-report.html

- name: Display JUnit Test Results
continue-on-error: true # Continue even if this step fails
uses: dorny/test-reporter@v1
with:
name: 'JUnit Results'
Expand Down

0 comments on commit d55e50b

Please sign in to comment.