diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index ee69de31..a763926f 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -14,7 +14,6 @@ permissions: env: DOTNET_VERSION: '8.0' - JAVA_VERSION: '17' jobs: build: @@ -29,12 +28,6 @@ jobs: with: dotnet-version: ${{ env.DOTNET_VERSION }} - - name: Set up Java - uses: actions/setup-java@v2 - with: - distribution: 'adopt' - java-version: ${{ env.JAVA_VERSION }} - - name: Install dependencies run: dotnet restore @@ -48,14 +41,3 @@ jobs: uses: codecov/codecov-action@v3 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - - - name: SonarCloud analysis - uses: SonarSource/sonarcloud-github-action@v1.8 - with: - args: > - -Dsonar.organization=benpollarduk - -Dsonar.projectKey=benpollarduk_adventure-framework - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} -