From 3c79f772675b0b644e0769455ff17b780c39b7f8 Mon Sep 17 00:00:00 2001 From: Ivan Koptiev Date: Thu, 12 Feb 2026 14:37:37 +0200 Subject: [PATCH] chore(ci): remove SonarCloud configuration and related workflow steps Firebolt is not using SonarCloud anymore, so those configurations are not needed. --- .github/release-please/config.json | 3 +-- .github/workflows/test.yaml | 5 ----- sonar-project.properties | 11 ----------- 3 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 sonar-project.properties diff --git a/.github/release-please/config.json b/.github/release-please/config.json index f17208d..b3e5051 100644 --- a/.github/release-please/config.json +++ b/.github/release-please/config.json @@ -16,7 +16,6 @@ ".": {} }, "extra-files": [ - "README.md", - "sonar-project.properties" + "README.md" ] } diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 807c014..5a0fc84 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -38,11 +38,6 @@ jobs: -html=coverage.out \ -o coverage.html - - name: SonarCloud Scan - uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 # v7.0.0 - env: - SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} - - name: Upload assets uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index 1c89865..0000000 --- a/sonar-project.properties +++ /dev/null @@ -1,11 +0,0 @@ -sonar.organization=firebolt-db -sonar.projectKey=firebolt-db_mcp-server -sonar.projectName=firebolt-db/mcp-server -sonar.projectVersion=0.6.0 # x-release-please-version - -sonar.sources=. -sonar.exclusions=**/*_test.go,cmd/docs-scrapper/**,coverage.* - -sonar.tests=. -sonar.test.inclusions=**/*_test.go -sonar.go.coverage.reportPaths=coverage.out