Report tests results #484
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: 'Report tests results' | |
on: | |
workflow_run: | |
workflows: ['Integration tests'] | |
types: | |
- completed | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Report tests results | |
uses: dorny/test-reporter@v1 | |
with: | |
name: Integration tests | |
artifact: tests-results | |
reporter: dotnet-trx | |
path: '*.trx' | |
- name: Report generated tests results | |
uses: dorny/test-reporter@v1 | |
with: | |
name: Generated tests | |
artifact: generated-tests-results | |
reporter: dotnet-trx | |
path: '*.trx' |