Test Reporter #112
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Test Reporter' | |
on: | |
workflow_run: | |
workflows: ['.NET Build and Test', '.NET NuGet & Docker Publish', 'Manual Docker Publish from Develop'] # runs after CI workflow | |
types: | |
- completed | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dorny/[email protected] | |
with: | |
name: TRX Tests | |
artifact: test-results # artifact name | |
fail-on-error: false # Supress error on failed tests | |
path: '*.trx' # Path to test results (inside artifact .zip) | |
reporter: dotnet-trx #Format of test results |