Test Report · CI #144 (ParamBuild) · Param build #108
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Report | |
| # Tie each run's title back to the CI run that triggered it, so the Actions list | |
| # shows e.g. "Test Report · CI #98 (branch) · <commit/PR title>" instead of a | |
| # context-free "Test Report #63". | |
| run-name: >- | |
| Test Report · CI #${{ github.event.workflow_run.run_number }} | |
| (${{ github.event.workflow_run.head_branch }}) · | |
| ${{ github.event.workflow_run.display_title }} | |
| on: | |
| workflow_run: | |
| workflows: [CI] | |
| types: [completed] | |
| permissions: | |
| contents: read | |
| actions: read | |
| checks: write | |
| jobs: | |
| report: | |
| name: Publish Test Results | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.workflow_run.conclusion != 'skipped' }} | |
| steps: | |
| - name: Publish Test Report | |
| uses: dorny/test-reporter@v3 | |
| with: | |
| # Matches all "Test - *" artifacts uploaded by the CI workflow. | |
| artifact: /Test - (.*)/ | |
| name: $1 | |
| path: "*.xml" | |
| reporter: java-junit | |
| fail-on-error: false | |
| fail-on-empty: false | |
| max-annotations: 50 | |
| use-actions-summary: false |