Skip to content

Commit

Permalink
fixed converlet
Browse files Browse the repository at this point in the history
  • Loading branch information
mvSapphire committed Dec 12, 2023
1 parent c97267e commit 91fd56d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,15 @@ jobs:
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test -p:CollectCoverage=true -p:CoverletOutput=TestResults/ -p:CoverletOutputFormat=opencover /p:Threshold=80 --no-build --verbosity normal
- name: Build&Test
run: dotnet test -f net8.0 -p:CollectCoverage=true -p:CoverletOutput=TestResults/ -p:CoverletOutputFormat=opencover --no-restore --verbosity normal
- name: Create Test Coverage Badge
uses: simon-k/dotnet-code-coverage-badge@v1.0.0
id: create_coverage_badge
with:
label: coverage
color: brightgreen
path: tests/PowerPipe.UnitTests/TestResults/coverage.opencover.xml
path: tests/PowerPipe.UnitTests/TestResults/coverage.net8.0.opencover.xml
gist-filename: code-coverage.json
gist-id: 87b833b49852f7f088e1d4d913600a91
gist-auth-token: ${{ secrets.GIST_AUTH_TOKEN }}

0 comments on commit 91fd56d

Please sign in to comment.