Update #645
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: Checks | |
on: | |
push: | |
jobs: | |
swiftuidemo: | |
runs-on: macos-12 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "14.2" | |
- uses: actions/checkout@v2 | |
- name: Build demo app | |
run: xcodebuild -project ./Dev/Brightroom.xcodeproj -scheme SwiftUIDemo -destination 'platform=iOS Simulator,name=iPhone 8,OS=16.2' | xcpretty | |
demo: | |
runs-on: macos-12 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "14.2" | |
- uses: actions/checkout@v2 | |
- name: Build demo app | |
run: xcodebuild -project ./Dev/Brightroom.xcodeproj -scheme Demo -destination 'platform=iOS Simulator,name=iPhone 8,OS=16.2' | xcpretty | |
test: | |
runs-on: macos-12 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "14.2" | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Test | |
run: xcodebuild -project ./Dev/Brightroom.xcodeproj -scheme BrightroomEngineTests test -destination 'platform=iOS Simulator,name=iPhone 8,OS=16.2' | xcpretty | |
swiftpm: | |
runs-on: macos-12 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "14.2" | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: xcodebuild -scheme BrightroomUI -destination 'platform=iOS Simulator,name=iPhone 8,OS=16.2' | xcpretty |