Skip to content

Test Report

Test Report #70

Workflow file for this run

name: 'Test Report'
on:
workflow_run:
workflows: [ 'Build' ]
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- name: Process Test Results
uses: dorny/test-reporter@v1
with:
artifact: test-results-${{ matrix.os }}
name: 'Test Results (${{ matrix.os }})'
path: '**/*.trx'
reporter: dotnet-trx