Test results #81
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 results | |
on: | |
# Run this workflow after the CI/CD workflow completes | |
workflow_run: | |
workflows: [Build, Deploy] | |
types: | |
- completed | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Extract the test result files from the artifacts | |
- uses: dorny/test-reporter@v1 | |
with: | |
name: Test results | |
artifact: test-results | |
path: "**/*.trx" | |
reporter: dotnet-trx | |
fail-on-error: true |