We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8237e3f commit 2d86b08Copy full SHA for 2d86b08
.github/workflows/build-and-test.yml
@@ -53,4 +53,11 @@ jobs:
53
- name: Build
54
run: dotnet build --no-restore
55
- name: Test
56
- run: dotnet test --no-build --no-restore --verbosity normal
+ run: dotnet test --no-build --no-restore --verbosity normal --logger trx --results-directory ${{ runner.temp }}
57
+
58
+ - name: Convert TRX to VS Playlist
59
+ if: failure()
60
+ uses: BenjaminMichaelis/trx-to-vsplaylist@v1
61
+ with:
62
+ trx-file-path: '${{ runner.temp }}/*.trx'
63
+ output-directory: '${{ runner.temp }}/vsplaylists'
0 commit comments