We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9a2e172 + 5304351 commit 4d9e363Copy full SHA for 4d9e363
2 files changed
.github/workflows/build.yml
@@ -39,4 +39,7 @@ jobs:
39
env:
40
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
42
- run: mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
+ run: |
43
+ if [[ $SONAR_TOKEN != "" ]]; then
44
+ mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
45
+ fi
.gitignore
@@ -28,3 +28,6 @@ hs_err_pid*
28
.project
29
.settings/
30
/bin/
31
+
32
+# IntelliJ files
33
+.idea/
0 commit comments