Skip to content

Init Khmerlang project #5

Init Khmerlang project

Init Khmerlang project #5

Workflow file for this run

name: iOS CI
on:
push:
branches: ["master", "main"]
pull_request:
jobs:
build-and-test:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select latest stable Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Show Xcode version
run: xcodebuild -version
- name: Build (Release, simulator)
run: xcodebuild -scheme Khmerlang-Keyboard-IOS -configuration Release -sdk iphonesimulator build
- name: Test
run: xcodebuild -scheme Khmerlang-Keyboard-IOS -destination 'platform=iOS Simulator,name=iPhone 17' test