Test Report #106
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'] | |
types: | |
- completed | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download test report file | |
uses: actions/download-artifact@v4 | |
with: | |
github-token: ${{ secrets.GH_DOWNLOAD_TOKEN }} | |
pattern: test-results* | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: Generate test report | |
uses: dorny/test-reporter@v1 | |
with: | |
#artifact: test-results | |
name: dotNET Tests | |
path: '**/*.trx' | |
reporter: dotnet-trx |