Skip to content

Commit bd9de71

Browse files
skip sonarqube for test
1 parent cd8216b commit bd9de71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/CodeQuality.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
run: |
3535
dotnet tool install --global dotnet-sonarscanner
3636
dotnet tool install --global dotnet-coverage
37-
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.opencover.reportsPaths="./CoverageResults/coverage.opencover.xml"
37+
# 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.opencover.reportsPaths="./CoverageResults/coverage.opencover.xml"
3838

3939
- name: Build
4040
run: dotnet build --no-restore -c Release /p:ContinuousIntegrationBuild=true
4141

4242
- name: Run Tests and Compute Coverage
4343
run: dotnet-coverage collect "dotnet test SysML2.NET.sln --filter Category!='Expected' --no-build --configuration Release" -f xml -o "coverage.xml"
4444

45-
- name: Sonarqube end
46-
run: dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
47-
env:
48-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
# - name: Sonarqube end
46+
# run: dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
47+
# env:
48+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)