From 38c661df2f8ad6e24ab636fadf6605f0dbeedb7f Mon Sep 17 00:00:00 2001 From: Leonardo Merza Date: Tue, 16 Jan 2024 12:57:29 -0500 Subject: [PATCH] Create sonar --- .github/workflows/sonar | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/sonar diff --git a/.github/workflows/sonar b/.github/workflows/sonar new file mode 100644 index 0000000..f7c88b0 --- /dev/null +++ b/.github/workflows/sonar @@ -0,0 +1,28 @@ +name: SonarQube + +on: + pull_request: + workflow_dispatch: + push: + branches: + - master + + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - uses: sonarsource/sonarqube-scan-action@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + # If you wish to fail your job when the Quality Gate is red, uncomment the + # following lines. This would typically be used to fail a deployment. + # - uses: sonarsource/sonarqube-quality-gate-action@master + # timeout-minutes: 5 + # env: + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}