Publish Test Reports #75
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
# Report publishing job, kept separate from potentially read-only ci job: see | |
# https://github.com/dorny/test-reporter#recommended-setup-for-public-repositories | |
name: Publish Test Reports | |
on: | |
workflow_run: | |
workflows: [ 'CI' ] | |
types: [ completed ] | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'success' | |
steps: | |
- name: Publish Test Results | |
uses: dorny/test-reporter@v1 | |
with: | |
artifact: junit-xml | |
name: Test Results | |
path: | | |
**/build/reports/junit/**/*.xml | |
reporter: java-junit |