We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36a65b4 commit d27f4fbCopy full SHA for d27f4fb
1 file changed
.github/workflows/PR-Build-And-Test.yml
@@ -35,7 +35,14 @@ jobs:
35
run: dotnet build --configuration Release --no-restore /p:AccessToNugetFeed=false
36
37
- name: Run .NET Tests
38
- run: dotnet test --no-build --configuration Release
+ run: dotnet test --no-build --configuration Release --logger trx --results-directory ${{ runner.temp }}
39
+
40
+ - name: Convert TRX to VS Playlist
41
+ if: failure()
42
+ uses: BenjaminMichaelis/trx-to-vsplaylist@v1
43
+ with:
44
+ trx-file-path: '${{ runner.temp }}/*.trx'
45
+ output-directory: '${{ runner.temp }}/vsplaylists'
46
47
- name: Set up Docker Buildx
48
uses: docker/setup-buildx-action@v3
0 commit comments