Skip to content

Test Report

Test Report #1723

Workflow file for this run

name: Test Report
on:
workflow_run:
workflows:
- Continuous Integration & Delivery
types:
- completed
jobs:
test-report:
permissions:
checks: write
runs-on: ubuntu-24.04
steps:
# https://github.com/dorny/test-reporter/issues/131#issuecomment-2093880211.
# https://github.com/dorny/test-reporter/issues/234#issuecomment-1462911162.
- name: Checkout Repository
uses: actions/checkout@v5
with:
lfs: true
- name: Download Test And Coverage Results
uses: actions/download-artifact@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
pattern: Testcontainers*
- name: Publish Test Report
uses: dorny/[email protected]
with:
name: test-report
path: '**/*.trx'
reporter: dotnet-trx
only-summary: true
use-actions-summary: false
list-suites: failed
list-tests: failed
fail-on-empty: false