-
Notifications
You must be signed in to change notification settings - Fork 9
38 lines (36 loc) · 1.15 KB
/
ci.yml
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
32
33
34
35
36
37
38
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
pod-lint:
name: Pod Lint
runs-on: macos-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Bundle Install
run: bundle install --gemfile=Example/Gemfile
- name: Pod Install
run: bundle exec --gemfile=Example/Gemfile pod install --project-directory=Example
- name: Lint Stagehand Podspec
run: bundle exec --gemfile=Example/Gemfile pod lib lint --verbose --fail-fast Stagehand.podspec
- name: Lint StagehandTesting Podspec
run: bundle exec --gemfile=Example/Gemfile pod lib lint --verbose --fail-fast --include-podspecs=Stagehand.podspec StagehandTesting.podspec
spm:
name: SPM Build
runs-on: macos-latest
strategy:
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Build
run: |
# test on the minimum supported version of the github actions runner
xcodebuild build \
-scheme Stagehand-Package \
-sdk iphonesimulator16.4 \
-destination "OS=16.4,name=iPhone 13 Pro"