Skip to content

Test Report

Test Report #37

Workflow file for this run

name: Test Report
on:
workflow_run:
workflows: ["CI"]
types:
- completed
permissions:
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Download Test Report
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2
with:
name: test-results
workflow: ${{ github.event.workflow.id }}
run_id: ${{ github.event.workflow_run.id }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@150e2f992e4fad1379da2056d1d1c279f520e058 # v3
with:
commit: ${{ github.event.workflow_run.head_sha }}
report_paths: "**/build/test-results/*/TEST-*.xml"