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 7a8c970 commit b05a549Copy full SHA for b05a549
.github/workflows/build-and-test.yml
@@ -31,7 +31,13 @@ jobs:
31
- name: Build
32
run: dotnet build -p:ContinuousIntegrationBuild=True -p:ReleaseDateAttribute=True --no-restore --configuration Release
33
- name: Test
34
- run: dotnet test --no-build --configuration Release --verbosity normal
+ run: dotnet test --no-build --configuration Release --verbosity normal --logger trx --results-directory ${{ runner.temp }}
35
+ - name: Convert TRX to VS Playlist
36
+ if: failure()
37
+ uses: BenjaminMichaelis/trx-to-vsplaylist@v1
38
+ with:
39
+ trx-file-path: '${{ runner.temp }}/*.trx'
40
+ output-directory: '${{ runner.temp }}/vsplaylists'
41
42
automerge:
43
needs: [build-and-test]
0 commit comments