Update Coil to 3.0.0 #36
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 iOS 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: Set Xcode version | |
run: sudo xcode-select -s /Applications/Xcode_15.3.app/Contents/Developer | |
- name: iOS debug build | |
run: cd iosApp && xcodebuild -scheme iosApp -configuration Debug -destination 'platform=iOS Simulator,OS=latest,name=iPhone 15' CODE_SIGNING_ALLOWED='NO' |