We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5940d94 commit 1564e51Copy full SHA for 1564e51
1 file changed
.github/workflows/build.yml
@@ -43,13 +43,13 @@ jobs:
43
run: dotnet build -c Debug
44
45
- name: Test (Debug)
46
- run: dotnet test -c Debug --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=opencover -p:Include="[MinimalApiMapper]*"
47
-
+ run: dotnet test -c Debug --no-build --collect "Code Coverage;Format=opencover"
+
48
- name: Build (Release)
49
run: dotnet build -c Release
50
51
- name: Test (Release)
52
- run: dotnet test -c Release --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=opencover -p:Include="[MinimalApiMapper]*"
+ run: dotnet test -c Release --no-build --collect "Code Coverage;Format=opencover"
53
54
- name: Upload Codecov
55
uses: codecov/codecov-action@v4.0.1
0 commit comments