Merge pull request #302 from Kotlin-Android-Open-Source/renovate/all-… #1106
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 CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths-ignore: [ '**.md', '**.MD' ] | |
| pull_request: | |
| branches: [ master ] | |
| paths-ignore: [ '**.md', '**.MD' ] | |
| workflow_dispatch: | |
| env: | |
| CI: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '21' | |
| - name: Cache gradle, wrapper and buildSrc | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ github.job }}- | |
| - name: Make gradlew executable | |
| run: chmod +x ./gradlew | |
| - name: Spotless check | |
| run: ./gradlew spotlessCheck | |
| - name: Build debug APK | |
| run: ./gradlew assembleDebug --warning-mode all --stacktrace | |
| - name: Upload APK | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: app-debug | |
| path: app/build/outputs/apk/debug/app-debug.apk |