Bump gradle/actions from 5 to 6 #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Java 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Compile | |
| run: ./gradlew clean assemble | |
| - name: Test | |
| run: ./gradlew -PtestMode=slow test | |
| - name: Checkstyle | |
| if: success() || failure() | |
| run: ./gradlew checkstyleMain | |
| - name: Jacoco Coverage Verification | |
| if: success() || failure() | |
| run: ./gradlew jacocoTestCoverageVerification |