File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -63,26 +63,20 @@ jobs:
63
63
run : msbuild ILSpy.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=$env:BuildPlatform /m
64
64
65
65
- name : Execute unit tests
66
- run : dotnet test --solution ilspy.sln --configuration ${{ matrix.configuration }} --no-build --report-trx --report-trx-filename test-results.trx
66
+ run : dotnet test --solution ilspy.sln --configuration ${{ matrix.configuration }} --no-build --report-trx --results-directory test-results/${{ matrix.configuration }}
67
67
68
68
- name : Upload Test Logs
69
69
uses : actions/upload-artifact@v4
70
70
if : success() || failure()
71
71
with :
72
72
name : test-results-${{ matrix.configuration }}
73
- path : |
74
- ICSharpCode.Decompiler.Tests/bin/${{ matrix.configuration }}/net10.0-windows/win-x64/TestResults/*.trx
75
- ILSpy.Tests/bin/${{ matrix.configuration }}/net10.0-windows/win-x64/TestResults/*.trx
76
- ILSpy.BamlDecompiler.Tests/bin/${{ matrix.configuration }}/net10.0-windows/win-x64/TestResults/*.trx
73
+ path : ' test-results/${{ matrix.configuration }}/*.trx'
77
74
78
75
- name : Create Test Report
79
76
uses : icsharpcode/test-summary-action@dist
80
77
if : always()
81
78
with :
82
- paths : |
83
- ICSharpCode.Decompiler.Tests/bin/${{ matrix.configuration }}/net10.0-windows/win-x64/TestResults/*.trx
84
- ILSpy.Tests/bin/${{ matrix.configuration }}/net10.0-windows/win-x64/TestResults/*.trx
85
- ILSpy.BamlDecompiler.Tests/bin/${{ matrix.configuration }}/net10.0-windows/win-x64/TestResults/*.trx
79
+ paths : " test-results/${{ matrix.configuration }}/*.trx"
86
80
folded : true
87
81
88
82
- name : Format check
Original file line number Diff line number Diff line change @@ -20,4 +20,5 @@ ILSpy.Installer/wix/
20
20
/VERSION
21
21
/ICSharpCode.Decompiler /Properties /DecompilerVersionInfo.cs
22
22
* /.vscode /
23
- DecompilerTests.config.json
23
+ DecompilerTests.config.json
24
+ * .trx
You can’t perform that action at this time.
0 commit comments