From 251b28fa43defc1d1c6bbde173fba5209ff64477 Mon Sep 17 00:00:00 2001 From: CloudlyBot | Argantiu <114483978+CloudlyBot@users.noreply.github.com> Date: Sat, 22 Apr 2023 18:23:53 +0200 Subject: [PATCH] Update gradle.yml --- .github/workflows/gradle.yml | 48 ------------------------------------ 1 file changed, 48 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 9b313b4..f554d5e 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -31,51 +31,3 @@ jobs: run: ./gradlew build -x test --warning-mode all env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Upload build artifacts - uses: actions/upload-artifact@v2 - with: - path: "**/build/libs" - - test: - - runs-on: ubuntu-22.04 - - steps: - - name: Set up JDK 17 - uses: actions/setup-java@v1 - with: - java-version: 17 - - - name: Cache Gradle - id: cache-gradle - uses: actions/cache@v1 - with: - path: ~/.gradle - key: ${{ runner.os }}-gradle - - - uses: actions/checkout@v1 - - - name: Grant execute permission to gradlew - run: chmod +x gradlew - - - name: Test - run: ./gradlew test --warning-mode all - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Create Coverage - run: ./gradlew jacocoTestReport - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Upload CodeCov Report - uses: codecov/codecov-action@v1 - with: - file: "**/build/reports/jacoco/**/*.xml" - - - name: Publish Unit Test Results - uses: EnricoMi/publish-unit-test-result-action@v1.24 - if: always() - with: - files: "**/build/test-results/**/*.xml"