Test Report #3379
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' | |
| on: | |
| workflow_run: | |
| workflows: ['CI'] # runs after CI workflow | |
| types: | |
| - completed | |
| jobs: | |
| report: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dorny/test-reporter@v2 | |
| with: | |
| artifact: test-results # Artifact name, ref CI Job | |
| name: JUnit Tests | |
| path: '**/build/test-results/**/*.xml' # Path to test results (inside artifact .zip) | |
| reporter: java-junit # Format of test results. | |
| list-suites: 'failed' # Only include failed test to reduce the size of the report. | |
| list-tests: 'failed' | |
| max-annotations: '50' | |
| only-summary: 'true' |