mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-22 00:38:48 +00:00
fix(ci): fix coverage reports
This commit is contained in:
parent
4dc5fc1148
commit
25062bbf8b
14
.github/workflows/dotnet.yml
vendored
14
.github/workflows/dotnet.yml
vendored
@ -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
|
||||
@ -52,11 +54,15 @@ jobs:
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user