Skip to content

Commit 2d86b08

Browse files
CI: Add trx-to-vsplaylist (#826)
1 parent 8237e3f commit 2d86b08

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,11 @@ jobs:
5353
- name: Build
5454
run: dotnet build --no-restore
5555
- name: Test
56-
run: dotnet test --no-build --no-restore --verbosity normal
56+
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

Comments
 (0)