fix(ci): fix coverage reports

This commit is contained in:
Oliver Booth 2024-02-17 16:23:04 +00:00
parent 4dc5fc1148
commit 25062bbf8b
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 11 additions and 5 deletions

View File

@ -33,8 +33,10 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Install dotCover
run: dotnet tool install --global JetBrains.dotCover.GlobalTool
- name: Install coverage tools
run: |
dotnet tool install --global JetBrains.dotCover.GlobalTool
dotnet tool install --global dotnet-reportgenerator-globaltool
- name: Build
run: dotnet build --no-restore --configuration Release
@ -50,13 +52,17 @@ jobs:
- name: Test .NET 8
run: dotnet test --no-build --verbosity normal --configuration Release --framework net8.0
- name: Collect coverage
run: dotnet dotcover test --dcReportType=XML
run: dotnet dotcover test --dcReportType=DetailedXML
- name: Convert coverage
run: reportgenerator -reports:./dotCover.Output.xml -targetdir:. -reporttypes:Cobertura
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.0
with:
disable_search: true
file: Cobertura.xml
token: ${{ secrets.CODECOV_TOKEN }}
files: dotCover.Output.xml
slug: oliverbooth/X10D