fix(edge-to-edge): Fixes spacing issues #7469
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: Android CI | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validation: | |
| name: Validate Gradle Wrapper | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/actions/wrapper-validation@v6 | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| check-latest: true | |
| cache: 'gradle' | |
| - name: Lint | |
| run: bash ./gradlew lintDebug --stacktrace --no-configuration-cache | |
| test: | |
| name: Unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| check-latest: true | |
| cache: 'gradle' | |
| - name: Unit tests | |
| run: bash ./gradlew test --stacktrace --no-configuration-cache | |
| apk: | |
| name: Generate APK | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| check-latest: true | |
| cache: 'gradle' | |
| - name: Build debug APK | |
| run: bash ./gradlew assembleDev --no-configuration-cache | |
| - name: Upload APK | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: app-dev-debug | |
| path: app/build/outputs/apk/dev/debug/app-dev-debug.apk |