Remove sonar workflow (#677)

diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml
index 9b39368..f3c9f8e 100644
--- a/.github/workflows/analyze.yml
+++ b/.github/workflows/analyze.yml
@@ -9,30 +9,6 @@
 
 jobs:
 
-  analyze-sonar:
-    name: Analyze Sonar
-    runs-on: ubuntu-latest
-    steps:
-      - name: Checkout code
-        uses: actions/checkout@v3
-      - name: Set up Java 17
-        uses: actions/setup-java@v3
-        with:
-          java-version: 17
-          distribution: temurin
-          cache: maven
-      - name: Cache SonarCloud packages
-        uses: actions/cache@v1
-        with:
-          path: ~/.sonar/cache
-          key: ${{ runner.os }}-sonar
-          restore-keys: ${{ runner.os }}-sonar
-      - name: Analize with Sonar
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}  # Needed to get PR information, if any
-          SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
-        run: ./mvnw -P integration -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
-
   lint:
     name: Spotless linter
     runs-on: ubuntu-latest