From 128abde591226282b44b71f669f8d55cee1b123f Mon Sep 17 00:00:00 2001 From: w3stling Date: Sat, 24 Aug 2024 18:33:22 +0200 Subject: [PATCH] Updated build script --- .github/workflows/pr-check.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 98fbc54..16b49e4 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -45,22 +45,11 @@ jobs: uses: gradle/actions/wrapper-validation@v4 - name: Build and test 🏗 - run: ./gradlew test jacocoTestReport + run: ./gradlew test jacocoTestReport sonar env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - - name: SonarCloud Scan 🔎 - uses: sonarsource/sonarcloud-github-action@v3 - with: - args: > - -Dsonar.organization=w3stling - -Dsonar.projectKey=w3stling_rssreader - -Dsonar.java.binaries=build/classes - -Dsonar.sources=src/main/java - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - - name: Publish Test Results 🚦 uses: EnricoMi/publish-unit-test-result-action@v2 if: always()