Skip to content

Commit

Permalink
fix(ci): fix coverage reports
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbooth committed Feb 17, 2024
1 parent 4dc5fc1 commit 25062bb
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 25062bb

Please sign in to comment.