Use frame modifier inside relative modifier (#49) #140
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-14 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "16.0" | |
- uses: actions/checkout@v2 | |
- name: xcodebuild | |
run: xcodebuild -scheme SwiftUISupport -sdk iphoneos -destination 'generic/platform=iOS' | |
test: | |
runs-on: macos-14 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "16.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() |