Skip to content

ui: content transition #521

ui: content transition

ui: content transition #521

Workflow file for this run

name: iOS Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build and Test default scheme using any available iPhone simulator
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Select Xcode Version
run: sudo xcode-select -switch /Applications/Xcode_15.4.app
- name: Set Default Scheme
run: |
scheme_list=$(xcodebuild -list -json | tr -d "\n")
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]")
echo $default | cat >default
echo Using default scheme: $default
- name: List Devices
run: xcrun xctrace list devices 2>&1
- name: Build
run: xcodebuild build-for-testing -scheme BDKSwiftExampleWallet -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5'
- name: Run tests
run: xcodebuild test-without-building -scheme BDKSwiftExampleWallet -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5'