diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml deleted file mode 100644 index 0b580d20ab..0000000000 --- a/.github/workflows/sonarqube.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: SonarQube analysis - -on: - push: - branches: - - develop - - feature/sonarcloud-coverage - -jobs: - sonarqube: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3 - with: - # Disabling shallow clone is recommended for improving relevancy of reporting. - fetch-depth: 0 - - - name: Compile SCs - run: make compile-scs - working-directory: test - - - name: Test - env: - ZKPROVER_URI: 127.0.0.1 - run: make test-full-non-e2e - working-directory: test - - # Triggering SonarQube analysis as results of it are required by Quality Gate check. - - name: SonarQube Scan - uses: sonarsource/sonarqube-scan-action@master - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index 5a7c5b4876..0000000000 --- a/sonar-project.properties +++ /dev/null @@ -1,10 +0,0 @@ -sonar.projectKey=zkevm-node - -sonar.sources=. -sonar.exclusions=**/*_test.go -sonar.exclusions=**/mock_*.go - -sonar.tests=. -sonar.test.inclusions=**/*_test.go -sonar.go.coverage.reportPaths=coverage.out -sonar.go.tests.reportPaths=report.json