Skip to content

Commit cdcabb0

Browse files
author
Christian
committed
chore: update CI workflow to improve test reporting
- Add `continue-on-error: true` to prevent workflow failures during test report publishing. - Introduce `only-summary: true` for concise test report output.
1 parent f01fb1a commit cdcabb0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,13 @@ jobs:
179179
180180
- name: Publish test report
181181
if: always() && steps.junit_check.outputs.available == 'true' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
182+
continue-on-error: true
182183
uses: dorny/test-reporter@v1
183184
with:
184185
name: SP800-90B Tests
185186
path: build-ci/test-junit/junit.xml
186187
reporter: java-junit
187-
token: ${{ secrets.GITHUB_TOKEN }}
188+
only-summary: true
188189
fail-on-error: false
189190

190191
- name: Upload coverage and test artifacts

0 commit comments

Comments
 (0)