Skip to content

Test Report

Test Report #322

Workflow file for this run

name: 'Test Report'
on:
workflow_run:
workflows: ['CI'] # runs after CI workflow
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Display test results
uses: dorny/test-reporter@a43b3a5f7366b97d083190328d2c652e1a8b6aa2 # v3.0.0
with:
artifact: test-results-${{ matrix.os }}
name: Test - Results - ${{ matrix.os }}
path: '*.trx'
reporter: dotnet-trx