diff --git a/.github/workflows/dotnetBuild.yml b/.github/workflows/dotnetBuild.yml index 87a6106..c69408f 100644 --- a/.github/workflows/dotnetBuild.yml +++ b/.github/workflows/dotnetBuild.yml @@ -43,4 +43,12 @@ jobs: run: dotnet build -p:ContinuousIntegrationBuild=True --no-restore --configuration Release - name: Test - run: dotnet test --no-build --configuration Release --verbosity normal \ No newline at end of file + run: dotnet test --no-build --configuration Release --verbosity normal --logger trx --results-directory ./TestResults + + - name: Create Failed Tests Playlist + if: always() + uses: BenjaminMichaelis/trx-to-vsplaylist@v2 + with: + trx-file-path: './TestResults/*.trx' + test-outcomes: 'Failed' + artifact-name: 'failed-tests-playlist' \ No newline at end of file