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 b85ee64 commit bec0847Copy full SHA for bec0847
.github/workflows/build.yml
@@ -47,6 +47,13 @@ jobs:
47
env:
48
CONFIGURATION: ${{ matrix.configuration }}
49
CI: true
50
+ - name: Test Report
51
+ uses: dorny/test-reporter@v1
52
+ if: always()
53
+ with:
54
+ name: Test Results (${{ matrix.os }}-${{ matrix.configuration }})
55
+ path: '**/TestResults/testResults*.trx'
56
+ reporter: dotnet-trx
57
# Builds the project in a dev container
58
build-devcontainer:
59
runs-on: ubuntu-latest
build/build.fs
@@ -395,6 +395,7 @@ let dotnetTest ctx =
395
|> DotNet.Options.withAdditionalArgs args
396
Configuration = configuration (ctx.Context.AllExecutingTargets)
397
NoBuild = true
398
+ Logger = Some "trx;LogFilePrefix=testResults"
399
})
400
sln
401
0 commit comments