Merge pull request #38 from Kotlin/coil-stable #37
This file contains 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 Android app | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: Build | |
runs-on: macOS-latest | |
# Only run build in template repo | |
if: github.event.repository.name == 'KMP-App-Template' && github.repository_owner == 'Kotlin' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 21 | |
- name: Android debug build | |
run: ./gradlew assembleDebug --stacktrace |