Skip to content

Commit

Permalink
ci: fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
phnx47 committed Jun 23, 2024
1 parent 8cd6786 commit 15dbcbe
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,11 @@ jobs:
with:
fetch-depth: 0

- name: Restore
run: dotnet restore

- name: Build
run: dotnet build --no-restore -c Release /p:ContinuousIntegrationBuild=true
run: dotnet build --no-restore -c Release -p:ContinuousIntegrationBuild=true

- name: Run tests
run: dotnet test --no-build -c Release /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
run: dotnet test --no-build -c Release -p:CollectCoverage=true -e:CoverletOutputFormat=opencover

- name: Publish to Codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 15dbcbe

Please sign in to comment.