Skip to content

Test Report

Test Report #105

Workflow file for this run

name: 'Test Report'
on:
workflow_run:
workflows: ['CI']
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Download test report file
uses: actions/download-artifact@v4
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
pattern: test-results*
run-id: ${{ github.event.workflow_run.id }}
- name: Generate test report
uses: dorny/test-reporter@v1
with:
#artifact: test-results
name: dotNET Tests
path: '**/*.trx'
reporter: dotnet-trx