We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b36f943 commit 6e34632Copy full SHA for 6e34632
1 file changed
.github/workflows/sonarcloud.yml
@@ -27,6 +27,13 @@ jobs:
27
java-version: '17'
28
distribution: 'temurin'
29
30
+ - name: Verify SonarCloud Token
31
+ run: |
32
+ if [ -z "${{ secrets.SONAR_TOKEN }}" ]; then
33
+ echo "Error: SONAR_TOKEN is not set"
34
+ exit 1
35
+ fi
36
+
37
- name: SonarCloud Scan
38
uses: SonarSource/sonarqube-scan-action@v5.0.0
39
env:
@@ -38,4 +45,4 @@ jobs:
45
-Dsonar.organization=dd3tech-1
46
-Dsonar.projectName=dd360-components-docs -Dsonar.projectVersion=1.0
40
47
-Dsonar.sourceEncoding=UTF-8 -Dsonar.java.binaries=.
41
- -Dsonar.java.jdkHome=$JAVA_HOME
48
+ -Dsonar.java.jdkHome=$JAVA_HOME -Dsonar.verbose=true
0 commit comments