Skip to content

Test Report

Test Report #152

Workflow file for this run

name: 'Test Report'
on:
workflow_run:
workflows: ['PR Tests']
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v2
with:
artifact: test-results-linux-x64
name: Test Results (Linux)
path: '*.trx'
reporter: dotnet-trx
if: success() || failure()
- uses: dorny/test-reporter@v2
with:
artifact: test-results-osx-arm64
name: Test Results (macOS)
path: '*.trx'
reporter: dotnet-trx
if: success() || failure()
- uses: dorny/test-reporter@v2
with:
artifact: test-results-win-x64
name: Test Results (Windows)
path: '*.trx'
reporter: dotnet-trx
if: success() || failure()