From 2ec6751dd6fe451fda60615f2c1124f230d006c0 Mon Sep 17 00:00:00 2001 From: edwin-focaloid Date: Fri, 29 Sep 2023 20:42:13 +0530 Subject: [PATCH] adding github action for sonar and added sonar property file --- .github/workflows/sonar.yml | 24 ++++++++++++++++++++++++ sonar-project.properties | 1 + 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/sonar.yml create mode 100644 sonar-project.properties diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml new file mode 100644 index 0000000000..a1d87ee9f7 --- /dev/null +++ b/.github/workflows/sonar.yml @@ -0,0 +1,24 @@ +name: Sonarqube_CI +on: + pull_request: + branches: + - '**' + workflow_dispatch: + +jobs: + build: + name: Sonarqube_CI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: sonarsource/sonarqube-scan-action@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + # Job will fail when the Quality Gate is red + - uses: sonarsource/sonarqube-quality-gate-action@master + timeout-minutes: 5 + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000000..0d4e37a4f9 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1 @@ +sonar.projectKey=package-tao