Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test new workflow #103

Merged
merged 1 commit into from
Nov 24, 2022
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