chore(deps): bump com.google.devtools.ksp from 2.3.6 to 2.3.10 #60
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: | |
| - main | |
| tags: | |
| - "*" | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| android: | |
| name: Build and verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Validate Gradle wrapper | |
| uses: gradle/actions/wrapper-validation@v6 | |
| - name: Set up Android SDK | |
| uses: android-actions/setup-android@v4 | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Make Gradle wrapper executable | |
| run: chmod +x ./gradlew | |
| - name: Run static checks, lint, tests, and debug build | |
| run: ./gradlew --stacktrace app:detekt app:ktlintCheck app:lint app:testDebugUnitTest app:assembleDebug | |
| - name: Upload CI reports | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ci-reports | |
| path: | | |
| app/build/reports/ | |
| app/build/test-results/ | |
| if-no-files-found: ignore |