Skip to content

Test Report

Test Report #209

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@09f2f74827fd3a8607589e5ad7f9398816f540fe # v3
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@9379f0ccddcab154835d4e2487555ee79614fe95 # v4
with:
commit: ${{ github.event.workflow_run.head_sha }}
report_paths: "**/build/test-results/*/TEST-*.xml"