Text changes #126
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: Build app | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
test: | |
name: Testing Swift Package and iOS app | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Force XCode 11.3 | |
run: sudo xcode-select -switch /Applications/Xcode_14.2.app | |
- name: Build iOS app | |
run: xcodebuild -workspace Me-iOS.xcworkspace -scheme DevelopMe-iOS -destination 'platform=iOS Simulator,OS=17,name=iPhone 15' |