From 90c156e791efa5cbda9f13539bdf6df5384f46b3 Mon Sep 17 00:00:00 2001 From: Oliver Weyhmueller Date: Sun, 5 Jan 2025 16:49:02 +0100 Subject: [PATCH] ci: add Sonarqube pipeline --- .gitea/workflows/sonarqube.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/sonarqube.yaml diff --git a/.gitea/workflows/sonarqube.yaml b/.gitea/workflows/sonarqube.yaml new file mode 100644 index 0000000..2d1c386 --- /dev/null +++ b/.gitea/workflows/sonarqube.yaml @@ -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: + fetch-depth: 0 + - name: SonarQube Scan + uses: https://github.com/kitabisa/sonarqube-action@v1.2.1 + with: + host: ${{ secrets.SONARQUBE_HOST }} + login: ${{ secrets.SONARQUBE_TOKEN }}