Test Report #535
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 Report | |
on: | |
workflow_run: | |
workflows: | |
- CI | |
- Release | |
types: | |
- completed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
steps: | |
- uses: dorny/[email protected] | |
with: | |
artifact: test-results | |
name: .NET Tests | |
path: "*.trx" | |
reporter: dotnet-trx | |
- uses: dorny/[email protected] | |
with: | |
artifact: integration-test-results | |
name: .NET Integration Tests | |
path: "*.trx" | |
reporter: dotnet-trx |