From c335637450a7769a02375b3b325abee861f2da98 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 3 Sep 2025 16:20:23 -0700 Subject: [PATCH] chore: remove sonar --- .gitea/workflows/sonar.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .gitea/workflows/sonar.yml diff --git a/.gitea/workflows/sonar.yml b/.gitea/workflows/sonar.yml deleted file mode 100644 index 3b27c9f..0000000 --- a/.gitea/workflows/sonar.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Code Analysis -on: - push: - branches: - - main - -jobs: - sonar: - name: SonarQube - - steps: - - name: Checkout Source Files - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: SonarCube Scan - uses: SonarSource/sonarqube-scan-action@v4 - timeout-minutes: 10 - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: "https://quality.nhcarrigan.com" - with: - args: > - -Dsonar.sources=. - -Dsonar.projectKey=docs - - - name: SonarQube Quality Gate check - uses: sonarsource/sonarqube-quality-gate-action@v1 - with: - pollingTimeoutSec: 600 - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: "https://quality.nhcarrigan.com"