Skip to content

Commit 3d3a348

Browse files
committed
Update build.yml
1 parent 6dd0ee4 commit 3d3a348

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,17 @@ jobs:
4444
run: dotnet build -c Debug
4545

4646
- name: Test (Debug)
47-
run: dotnet test -c Debug --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=opencover -p:CoverletOutput='coverage.json'
47+
run: dotnet test -c Debug --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=cobertura
4848

4949
- name: Build (Release)
5050
run: dotnet build -c Release
51-
51+
5252
- name: Test (Release)
53-
run: dotnet test -c Release --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=opencover -p:CoverletOutput='coverage.json' -p:MergeWith='coverage.json'
53+
run: dotnet test -c Release --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=cobertura
5454

5555
- name: Upload Codecov
5656
uses: codecov/codecov-action@v5
5757
with:
58-
files: coverage.json
5958
use_oidc: true
6059
fail_ci_if_error: false
6160

0 commit comments

Comments
 (0)