Remove ambient light modifier (#48) #134
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 | |
on: | |
push: | |
branches: "*" | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "15.0" | |
- uses: actions/checkout@v2 | |
- name: xcodebuild | |
run: xcodebuild -scheme SwiftUISupport -sdk iphoneos -destination 'generic/platform=iOS' | |
test: | |
runs-on: macos-13 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "15.0" | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Test | |
run: xcodebuild -scheme SwiftUISupport -resultBundlePath results/SwiftUISupportTests.xcresult test -destination 'platform=iOS Simulator,name=iPhone 8,OS=16.2' -derivedDataPath ./DerivedData | xcpretty | |
- uses: kishikawakatsumi/xcresulttool@v1 | |
with: | |
path: | | |
results/SwiftUISupportTests.xcresult | |
if: success() || failure() |