Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/test-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,26 @@ name: ci-report

on:
workflow_run:
workflows: ci-test # runs after CI workflow
workflows: ['ci-test'] # runs after CI workflow
types:
- completed
jobs:
test-report-release:
runs-on: windows-latest
name: Test report (release)
steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results-release # artifact name
name: Dorny release tests # Name of the check run which will be created
name: Report release tests # Name of the check run which will be created
path: '*.trx' # Path to test results (inside artifact .zip)
reporter: dotnet-trx # Format of test results

test-report-debug:
runs-on: windows-latest
name: Test report (debug)
steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results-debug # artifact name
name: Dorny debug tests # Name of the check run which will be created
name: Report debug tests # Name of the check run which will be created
path: '*.trx' # Path to test results (inside artifact .zip)
reporter: dotnet-trx # Format of test results