We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9db262c commit 603ebe9Copy full SHA for 603ebe9
1 file changed
.github/workflows/SonarQube.yml
@@ -42,6 +42,7 @@ jobs:
42
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
43
shell: powershell
44
run: |
45
- ${{ runner.temp }}\scanner\dotnet-sonarscanner begin /k:"SpiceSharp_SpiceSharpParser" /o:"spicesharp" /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
+ ${{ runner.temp }}\scanner\dotnet-sonarscanner begin /k:"SpiceSharp_SpiceSharpParser" /o:"spicesharp" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml"
46
dotnet build src/SpiceSharp-Parser.sln
47
+ dotnet test src/SpiceSharp-Parser.sln --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
48
${{ runner.temp }}\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
0 commit comments