Skip to content

Commit dbcd918

Browse files
dotcover update
1 parent 61e6e6a commit dbcd918

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CodeQuality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
run: |
4040
dotnet tool install --global dotnet-sonarscanner
4141
dotnet tool install --global JetBrains.dotCover.CommandLineTools
42-
dotnet sonarscanner begin /k:"STARIONGROUP_SysML2.NET" /o:"stariongroup" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.dotcover.reportsPaths=dotCover.Output.html
42+
dotnet sonarscanner begin /k:"STARIONGROUP_SysML2.NET" /o:"stariongroup" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.dotcover.reportsPaths="dotCoverReport.xml"
4343
4444
- name: Build
4545
run: dotnet build --no-restore --no-incremental /p:ContinuousIntegrationBuild=true
4646

4747
- name: Run Tests and Compute Coverage
48-
run: dotnet dotcover test SysML2.NET.sln --no-restore --no-build --verbosity quiet --dcReportType=HTML
48+
run: dotcover cover --xml-report-output="dotCoverReport.xml" -- test SysML2.NET.sln --no-restore --no-build --verbosity quiet --no-build
4949

5050
- name: Sonarqube end
5151
run: dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"

0 commit comments

Comments
 (0)