Skip to content

Test Results

Test Results #7

Workflow file for this run

name: Test Results
on:
workflow_run:
workflows: [".NET Core"]
types:
- completed
jobs:
test-results:
name: Publish Test Results
runs-on: ubuntu-latest
if: always()
permissions:
contents: read
actions: read
checks: write
steps:
- name: Publish test results
uses: dorny/test-reporter@v2
with:
name: .NET tests
artifact: test-results
path: '**/*.trx'
reporter: dotnet-trx