Add StagehandTesting to SPM package, update CI #144
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
pod-lint: | |
name: CocoaPods Lint | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Lint podspecs | |
run: 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: | | |
# select minimum supported Xcode version | |
sudo xcode-select -s /Applications/Xcode_14.3.1.app | |
# TODO: add SPM test target, for now just run build on all products. | |
xcodebuild build \ | |
-scheme Stagehand-Package \ | |
-sdk iphonesimulator16.4 \ | |
-destination "OS=16.4,name=iPhone 13 Pro" |