File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -64,14 +64,14 @@ jobs:
64
64
# Run tests
65
65
- name : Run tests
66
66
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 "
68
68
69
69
# Upload test results
70
70
- name : Upload dotnet test results
71
71
uses : actions/upload-artifact@v4
72
72
with :
73
73
name : test-results-${{ matrix.configuration }}-${{ matrix.define }}
74
- path : TestResults/test-results .trx
74
+ path : TestResults/**/* .trx
75
75
# Use always() to always run this step to publish test results when there are test failures
76
76
if : ${{ always() }}
77
77
You can’t perform that action at this time.
0 commit comments