Created
January 19, 2025 14:57
-
-
Save hendisantika/8f484837924c5fe5731832c35609a49b to your computer and use it in GitHub Desktop.
Sonar Cloud Template for GitHub Action
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sonar Scan | |
on: | |
push: | |
branches: | |
- sonarqube-setup | |
jobs: | |
build-and-analyze: | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '23' | |
- name: Build Project | |
run: mvn clean install -DskipTests | |
- name: SonarQube Scan | |
uses: sonarsource/sonarqube-scan-action@master | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_HOST_URL: 'https://sonarcloud.io/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment