diff --git a/.gitea/workflows/analyse.yml b/.gitea/workflows/analyse.yml new file mode 100644 index 0000000..b63940c --- /dev/null +++ b/.gitea/workflows/analyse.yml @@ -0,0 +1,16 @@ +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 }}