Merge pull request #37 from ashalva/feature/sa/add-object-value #159
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: TogglesDemo | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
XCODE_VERSION: 14.0.1 | |
jobs: | |
test: | |
name: Build | |
runs-on: macos-12 | |
steps: | |
- name: Show macOS version | |
run: sw_vers | |
- name: Code Checkout | |
uses: actions/checkout@v2 | |
- name: Select Xcode | |
uses: ./.github/actions/select-xcode | |
with: | |
xcode-version: ${{ env.XCODE_VERSION }} | |
- name: Check xcodebuild version | |
run: xcodebuild -version | |
- name: Check xcode embedded SDKs | |
run: xcodebuild -showsdks | |
- name: Show buildable schemes | |
working-directory: ./TogglesDemo | |
run: xcodebuild -list | |
- name: Show eligible build destinations for TogglesDemo | |
working-directory: ./TogglesDemo | |
run: xcodebuild -showdestinations -scheme TogglesDemo | |
- name: Build for destination TogglesDemo | |
working-directory: ./TogglesDemo | |
run: xcodebuild build -scheme TogglesDemo -destination "platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro" |