Skip to content

Report

Report #171

Workflow file for this run

name: Report
on:
workflow_run:
workflows: [ 'Test' ]
branches:
- '*'
types:
- completed
jobs:
report:
name: Report
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion != 'cancelled' }}
steps:
- name: Report
uses: dorny/test-reporter@v1
with:
artifact: /TestResults-(.*)/
name: Test Results ($1)
path: "*.trx"
reporter: dotnet-trx
fail-on-error: false