diff --git a/.github/workflows/codeanalysis.yaml b/.github/workflows/codeanalysis.yaml deleted file mode 100644 index d3765e2fbb..0000000000 --- a/.github/workflows/codeanalysis.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: Code Analysis -on: - push: - branches: - - main - pull_request: - types: [opened, synchronize, reopened] -jobs: - sonarcloud: - name: SonarCloud - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index 6acda7d4a5..0000000000 --- a/sonar-project.properties +++ /dev/null @@ -1,5 +0,0 @@ -sonar.projectKey=hive_graphql-hive -sonar.organization=hive -sonar.projectName=GraphQL Hive -sonar.sources=. -sonar.sourceEncoding=UTF-8