Bump actions/cache from 5 to 6 #303
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: Build | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| - master | |
| push: | |
| branches: | |
| - development | |
| - master | |
| jobs: | |
| test: | |
| name: Build app | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - name: Delete some caches | |
| run: rm -f ~/.gradle/caches/modules-2/modules-2.lock; rm -fr ~/.gradle/caches/*/plugin-resolution/ | |
| - name: Cache Gradle | |
| uses: actions/cache@v6 | |
| with: | |
| path: | | |
| ~/.android/build-cache | |
| ~/.m2 | |
| ~/.gradle | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gradle- | |
| - name: Make gradlew executable | |
| run: chmod +x gradlew; chmod +x gradle/wrapper/gradle-wrapper.jar | |
| - name: Build | |
| run: ./gradlew clean test --full-stacktrace | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v6 |