place content according to its degree. #38
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 and Test Sources | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: "Build Sources" | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Install xcpretty | |
run: bundle install | |
- name: Build and Test | |
run: | | |
set -o pipefail && \ | |
xcodebuild -scheme SimpleRoulette \ | |
clean build test \ | |
-destination "name=iPhone 12" \ | |
| bundle exec xcpretty |