Skip to content

Commit

Permalink
chore(GHA): ignore failure in submitting test reports
Browse files Browse the repository at this point in the history
Closes #1096
  • Loading branch information
vringar committed Jul 20, 2024
1 parent 9ea92b1 commit 5e77c98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ jobs:
TESTS: ${{ matrix.test-groups }}
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
continue-on-error: true
if: always() # run this step even if previous step failed
with:
name: ${{matrix.test-groups}} # Name of the check run which will be created
path: junit-report.xml # Path to test results
Expand Down

0 comments on commit 5e77c98

Please sign in to comment.