report-generic #114
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
name: report-generic | |
on: | |
workflow_run: | |
workflows: [test] | |
types: [completed] | |
permissions: | |
checks: write | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download h2spec Report | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
name: h2spec-results | |
workflow: ${{ github.event.workflow.id }} | |
run_id: ${{ github.event.workflow_run.id }} | |
- name: Stub Git repo for test-reporter | |
run: | | |
git init | |
- name: Publish h2spec-generic report | |
uses: dorny/test-reporter@v1 | |
with: | |
name: h2spec-generic | |
path: h2spec-generic.xml | |
reporter: java-junit |