-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (24 loc) · 815 Bytes
/
ios.yml
File metadata and controls
31 lines (24 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: iOS starter workflow
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install Bundler
run: gem install bundler
- name: Install CocoaPods
run: bundle install && bundle exec pod install --repo-update
- name: Select Xcode version
run: sudo xcode-select -s /Applications/Xcode.app
- name: Build and Test
run: xcodebuild clean test -workspace iOSApp.xcworkspace -scheme iOSApp -destination 'platform=iOS Simulator,name=iPhone 15,OS=latest' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO