ci(forgejo-actions): analyze project with sonarqube
All checks were successful
Build, test and publish the Quarkus libraries / build (push) Successful in 1m49s

This commit is contained in:
Jorge Bornhausen 2024-11-11 18:36:06 +01:00
parent 797c3ed950
commit 25fe14a5a7
Signed by: jorge.bornhausen
SSH key fingerprint: SHA256:X2ootOwvCeP4FoNfmVUFIKIbhq95tAgnt7Oqg3x+lfs
2 changed files with 15 additions and 8 deletions

View file

@ -8,6 +8,8 @@ jobs:
steps:
- name: Checkout the code
uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: https://github.com/actions/setup-java@v4
@ -37,6 +39,12 @@ jobs:
- name: Build and run tests
run: ./mvnw verify
- name: Analyze with Sonar
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: ./mvnw org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=quarkus-commons -Dsonar.projectName='quarkus-commons' -Dsonar.coverage.jacoco.xmlReportPaths=../**/target/jacoco-report/jacoco.xml
- name: Upload libs to Gitea Maven Registry
if: gitea.ref == 'refs/heads/main'
run: ./mvnw deploy -Dmaven.test.skip=true -Dmaven.javadoc.skip=true