Skip to content
Merged
Show file tree
Hide file tree
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
40 changes: 0 additions & 40 deletions .github/workflows/report-test-results.yaml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ jobs:
- name: Run task 'in-tests-core'
shell: cmd
run: ./build.cmd in-tests-core -e
# Report test results with unique name
- name: Report tests results
uses: dorny/test-reporter@v2
if: always()
with:
name: test-windows-core-${{ matrix.os }}
path: "**/*.trx"
reporter: dotnet-trx
# Upload Artifacts with Unique Name
- name: Upload test results
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -60,6 +68,14 @@ jobs:
- name: Run task 'in-tests-full'
shell: cmd
run: ./build.cmd in-tests-full -e
# Report test results with unique name
- name: Report tests results
uses: dorny/test-reporter@v2
if: always()
with:
name: test-windows-full-${{ matrix.os }}
path: "**/*.trx"
reporter: dotnet-trx
# Upload Artifacts with Unique Name
- name: Upload test results
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -100,6 +116,14 @@ jobs:
run: ./build.cmd unit-tests -e
- name: Run task 'in-tests-core'
run: ./build.cmd in-tests-core -e
# Report test results with unique name
- name: Report tests results
uses: dorny/test-reporter@v2
if: always()
with:
name: test-linux-${{ matrix.os }}
path: "**/*.trx"
reporter: dotnet-trx
# Upload Artifacts with Unique Name
- name: Upload test results
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -139,6 +163,14 @@ jobs:
run: ./build.cmd unit-tests -e
- name: Run task 'in-tests-core'
run: ./build.cmd in-tests-core -e
# Report test results with unique name
- name: Report tests results
uses: dorny/test-reporter@v2
if: always()
with:
name: test-macos(${{ matrix.os.arch }})
path: "**/*.trx"
reporter: dotnet-trx
# Upload Artifacts with Unique Name
- name: Upload test results
uses: actions/upload-artifact@v4
Expand Down