Build and Test #1
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 and Test | |
on: | |
push: | |
pull_request: | |
jobs: | |
iOS: | |
runs-on: macos-13 | |
steps: | |
- name: Select latest available Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0.0' | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Build Swift Package | |
run: xcodebuild build -scheme NorthwindSwiftData -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.0' | xcpretty && exit ${PIPESTATUS[0]} | |
- name: Run Tests | |
run: xcodebuild test -scheme NorthwindSwiftData -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.0' | xcpretty && exit ${PIPESTATUS[0]} | |
nextstep: | |
runs-on: macos-13 | |
steps: | |
- name: Select latest available Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0.0' | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Build Swift Debug Package | |
run: swift build -c debug | |
- name: Build Swift Release Package | |
run: swift build -c release |