Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SplittyDev committed Jan 4, 2025
1 parent cb06f67 commit d3441cd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ on:
branches: [ "main" ]

jobs:
iOS:
ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -scheme MapItemPicker -destination "platform=iOS Simulator,OS=latest,name=iPhone 14" | xcpretty
- uses: actions/checkout@v4
- name: Setup Xcode 16
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16
- name: Build (iOS)
run: xcodebuild build -scheme $PACKAGE -sdk iphoneos -destination 'generic/platform=iOS,name=iPhone 15'
- name: Test (iOS)
run: xcodebuild test -scheme $PACKAGE -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15'

0 comments on commit d3441cd

Please sign in to comment.