Tests Reports (Driver 4.x) #359
This file contains 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
# This is a workflow that runs after 'Tests' | |
# workflow, because the 'Tests' (PR) workflow | |
# has insufficient permissions to write | |
# GitHub Actions checks. | |
name: 'Tests Reports (Driver 4.x)' | |
on: | |
workflow_run: | |
workflows: ['Tests (Driver 4.x)'] | |
types: | |
- completed | |
jobs: | |
report: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Generate test report | |
uses: dorny/test-reporter@v1 | |
with: | |
artifact: 'test-results' | |
name: 'Test report' | |
path: '**/TEST-TestSuite.xml' | |
reporter: java-junit | |
list-tests: failed |