-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the failing build after #444: - Add the `test-report.yml` pipeline again - Downgrade the `upload-artifact` and `download-artifact` actions from v4 to v3 - Exclude the two actions from `renovate.json`
- Loading branch information
Showing
6 changed files
with
63 additions
and
17 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: 'Test Report' | ||
on: | ||
workflow_run: | ||
workflows: ['CI'] | ||
types: | ||
- completed | ||
jobs: | ||
report: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dorny/test-reporter@v1 | ||
if: success() || failure() | ||
with: | ||
artifact: Test results (MacOS) | ||
name: MacOS Tests | ||
path: '*.trx' | ||
reporter: dotnet-trx | ||
fail-on-error: 'false' | ||
- uses: dorny/test-reporter@v1 | ||
if: success() || failure() | ||
with: | ||
artifact: Test results (Ubuntu) | ||
name: Ubuntu Tests | ||
path: '*.trx' | ||
reporter: dotnet-trx | ||
fail-on-error: 'false' | ||
- uses: dorny/test-reporter@v1 | ||
if: success() || failure() | ||
with: | ||
artifact: Test results (Windows) | ||
name: Windows Tests | ||
path: '*.trx' | ||
reporter: dotnet-trx | ||
fail-on-error: 'false' | ||
- uses: dorny/test-reporter@v1 | ||
if: success() || failure() | ||
with: | ||
artifact: Test results (.NET Framework) | ||
name: .NET Framework Tests | ||
path: '*.trx' | ||
reporter: dotnet-trx | ||
fail-on-error: 'false' |
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
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