feat: release 2.16.8 #168
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-13 | |
steps: | |
- name: Chechout Repository | |
uses: actions/checkout@v2 | |
- name: Select Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0' | |
- name: Build | |
run: | | |
set -o pipefail | |
xcodebuild build \ | |
-scheme unicocheck-ios \ | |
-destination 'platform=iOS Simulator,name=iPhone 14' \ | |
-derivedDataPath build \ | |
| xcpretty | |
- name: Archive derived data artifacts | |
uses: actions/[email protected] | |
with: | |
name: build | |
path: build | |
test: | |
name: Test Project | |
needs: build | |
runs-on: macos-13 | |
steps: | |
- name: Chechout Repository | |
uses: actions/checkout@v2 | |
- name: Download derived data artifact | |
uses: actions/[email protected] | |
with: | |
name: build | |
- name: Select Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0' | |
- name: Test | |
run: | | |
set -o pipefail | |
xcodebuild build \ | |
-scheme unicocheck-ios \ | |
-destination 'platform=iOS Simulator,name=iPhone 14' \ | |
-derivedDataPath \ | |
test | |