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 9022fe0 commit 6e285efCopy full SHA for 6e285ef
1 file changed
.github/workflows/build-release.yml
@@ -26,14 +26,17 @@ jobs:
26
with:
27
dotnet-version: '9.x'
28
29
+ - name: Install Coverlet
30
+ run: dotnet tool install --global coverlet.console
31
+
32
- name: Restore
33
run: dotnet restore src/DispatchR/DispatchR.csproj
34
35
- name: Build
36
run: dotnet build src/DispatchR/DispatchR.csproj --configuration Release --no-restore
37
38
- name: Run Tests
- run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
39
+ run: dotnet test --no-build --configuration Release --collect:"XPlat Code Coverage"
40
41
- name: List files
42
run: ls -alh tests/DispatchR.IntegrationTest
0 commit comments