release: 2.11.0 #120
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: On Pull Request | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build Project | |
runs-on: macos-latest | |
steps: | |
- name: Chechout Repository | |
uses: actions/checkout@v2 | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode.app | |
- name: Build | |
run: | | |
set -o pipefail | |
xcodebuild build \ | |
-scheme unicocheck-ios \ | |
-destination 'platform=iOS Simulator,name=iPhone 11' \ | |
-derivedDataPath build \ | |
| xcpretty | |
- name: Archive derived data artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build | |
path: build | |
test: | |
name: Test Project | |
needs: build | |
runs-on: macos-latest | |
steps: | |
- name: Chechout Repository | |
uses: actions/checkout@v2 | |
- name: Download derived data artifact | |
uses: actions/download-artifact@v1 | |
with: | |
name: build | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode.app | |
- name: Test | |
run: | | |
set -o pipefail | |
xcodebuild build \ | |
-scheme unicocheck-ios \ | |
-destination 'platform=iOS Simulator,name=iPhone 11' \ | |
-derivedDataPath \ | |
test | |