Update dependency androidx.lifecycle:lifecycle-runtime to v2.10.0 - autoclosed #217
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: Build | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Check build-logic | |
| run: ./gradlew check -p build-logic | |
| - name: Check spotless | |
| run: ./gradlew spotlessCheck --no-configuration-cache | |
| - name: Build the sample app to verify it works | |
| run: ./gradlew sample:assemble |