From 7e327e335d54b479e8cc597a65a999ee6f9ae9e6 Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Sun, 10 Nov 2024 08:59:22 -0800 Subject: [PATCH] add sonar workflow --- .gitea/workflows/sonar.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/sonar.yml diff --git a/.gitea/workflows/sonar.yml b/.gitea/workflows/sonar.yml new file mode 100644 index 0000000..bbd6e5b --- /dev/null +++ b/.gitea/workflows/sonar.yml @@ -0,0 +1,23 @@ +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened] + +name: SonarQube Scan +jobs: + sonarqube: + name: SonarQube Trigger + runs-on: ubuntu-latest + steps: + - name: Checking out + uses: actions/checkout@v4 + with: + # Disabling shallow clone is recommended for improving relevancy of reporting + fetch-depth: 0 + - name: SonarQube Scan + uses: kitabisa/sonarqube-action@v1.2.0 + with: + host: ${{ secrets.SONARQUBE_HOST }} + login: ${{ secrets.SONARQUBE_TOKEN }} \ No newline at end of file