Skip to content

Commit 9020a38

Browse files
authored
Update workflows.yaml
1 parent 4abcd7c commit 9020a38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/workflows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ jobs:
6464
# Run tests
6565
- name: Run tests
6666
run: |
67-
dotnet test src/Arch.Tests/Arch.Tests.csproj --configuration ${{ matrix.configuration }} --framework net8.0 -p:DefineConstants="${{ matrix.define }}" --logger "trx;LogFileName=TestResults/test-results.trx"
67+
dotnet test src/Arch.Tests/Arch.Tests.csproj --configuration ${{ matrix.configuration }} --framework net8.0 -p:DefineConstants="${{ matrix.define }}" --logger trx --results-directory "TestResults"
6868
6969
# Upload test results
7070
- name: Upload dotnet test results
7171
uses: actions/upload-artifact@v4
7272
with:
7373
name: test-results-${{ matrix.configuration }}-${{ matrix.define }}
74-
path: TestResults/test-results.trx
74+
path: TestResults/**/*.trx
7575
# Use always() to always run this step to publish test results when there are test failures
7676
if: ${{ always() }}
7777

0 commit comments

Comments
 (0)