Merge develop into main for RxSwift 6 support #42
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 Sample Projects | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: '**' | |
jobs: | |
buildLegacyProject: | |
name: "Build Legacy Project" | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
cd Sample\ Projects/RxSwift\ 5\ App/ | |
xcodebuild clean -project RxSwift\ 5\ App.xcodeproj -scheme RxSwift\ 5\ App -destination "generic/platform=iOS" | |
buildLatestProject: | |
name: "Build Latest Project" | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
cd Sample\ Projects/RxSwift\ 6\ App/ | |
xcodebuild clean -project RxSwift\ 6\ App.xcodeproj -scheme RxSwift\ 6\ App -destination "generic/platform=iOS" |