Skip to content

Tests Report

Tests Report #73

Workflow file for this run

name: Tests Report
on:
workflow_run:
workflows: [ Tests ]
types: [ completed ]
permissions:
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Download test results
uses: actions/download-artifact@v4
with:
name: junit
path: junit/
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
- name: Publish test report
uses: mikepenz/action-junit-report@v5
with:
commit: ${{ github.event.workflow_run.head_sha }}
report_paths: junit/**.xml