Merge branch 'develop' into add-async-view-android #1207
Workflow file for this run
This file contains hidden or 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: Swift | |
| on: | |
| push | |
| jobs: | |
| ios-build: | |
| runs-on: mobile | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| - name: Test BSWInterfaceKit iOS | |
| run: set -o pipefail && xcodebuild -scheme BSWInterfaceKit -destination "platform=iOS Simulator,name=iPhone 17,OS=26.4" test | xcbeautify --renderer github-actions | |
| macos-build: | |
| runs-on: mobile | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| - name: Test BSWInterfaceKit macOS | |
| run: set -o pipefail && SKIP_ZERO=1 swift build | xcbeautify --renderer github-actions | |
| android-build: | |
| runs-on: mobile | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build on Android | |
| run: SKIP_ENABLED=1 skip android build |