(DOCSP-34055): Swift: Add docs for wait for upload/download #961
Workflow file for this run
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: iOS CI Realm Example App | |
on: | |
pull_request: | |
paths: | |
- "examples/ios/Examples/**" | |
jobs: | |
build: | |
name: Run iOS Example App Tests | |
runs-on: macOS-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "14.3.1" | |
- name: Build | |
env: | |
scheme: ${{ 'default' }} | |
platform: ${{ 'iOS Simulator' }} | |
run: | | |
cd examples/ios | |
xcodebuild build-for-testing -scheme "Test Examples" -destination "platform=iOS Simulator,name=iPhone 14 Pro" | |
- name: Test | |
env: | |
scheme: ${{ 'default' }} | |
platform: ${{ 'iOS Simulator' }} | |
run: | | |
cd examples/ios | |
xcodebuild test-without-building -scheme "Test Examples" -destination "platform=iOS Simulator,name=iPhone 14 Pro" |