From e76cd59d66e9cf1004614817500f01b3df6ad1c6 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Tue, 12 Apr 2022 19:35:07 +0200 Subject: [PATCH] Create sonarqube.yaml --- .github/workflows/sonarqube.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/sonarqube.yaml diff --git a/.github/workflows/sonarqube.yaml b/.github/workflows/sonarqube.yaml new file mode 100644 index 0000000..f70fbb5 --- /dev/null +++ b/.github/workflows/sonarqube.yaml @@ -0,0 +1,23 @@ +name: SonarQube +on: + push: + branches: + - main # or the name of your main branch +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - 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 }}