File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 }}"
You can’t perform that action at this time.
0 commit comments