Test Reporting for CI builds #508
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 Reporting for CI builds" | |
on: | |
workflow_run: | |
workflows: [".NET CI"] | |
types: | |
- completed | |
jobs: | |
test-reporting: | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
steps: | |
- name: Generate Test Report | |
uses: phoenix-actions/test-reporting@v15 | |
id: test-report | |
with: | |
name: ".NET Test report $1" | |
path: "**/*.trx" | |
reporter: dotnet-trx | |
artifact: /test-results-(.*)/ |