Updated Kotlin to 1.9.20 #6
Workflow file for this run
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 | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
macos-build: | |
name: Build on macOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Build project | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build | |
- name: Build app-ios-swift | |
run: xcodebuild -project app-ios-swift/app-ios-swift.xcodeproj -scheme app-ios-swift -sdk iphonesimulator -arch x86_64 build |