diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4aa2bf547..588bb5f17 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,17 +15,14 @@ jobs: java-version: '21' distribution: 'temurin' - uses: gradle/gradle-build-action@v2 - env: - SENTRY_AUTH_TOKEN: ${{secrets.SENTRY_AUTH_TOKEN}} with: arguments: build gradle-version: 8.7 - build-root-directory: app - name: Publish code coverage uses: paambaati/codeclimate-action@v3.0.0 env: CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} - JACOCO_SOURCE_PATH: ${{github.workspace}}/app/src/main/java + JACOCO_SOURCE_PATH: ${{github.workspace}}/src/main/java with: coverageCommand: make report - coverageLocations: ${{github.workspace}}/app/build/reports/jacoco/test/jacocoTestReport.xml:jacoco + coverageLocations: ${{github.workspace}}/build/reports/jacoco/test/jacocoTestReport.xml:jacoco