Align CocoaPods macOS deployment to 10.10, like SPM #524
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: RxSwift | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
xcode14: | |
name: "Xcode 14" | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
environment: [iOS, iOS-Example, Unix, watchOS, tvOS, SPM] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run Tests | |
run: CI=1 ./scripts/all-tests.sh "${{ matrix.environment }}" | |
linux: | |
name: "Test (Linux)" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Swift 5.5 Docker Container | |
uses: docker://swift:5.5.0-slim | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: CI=1 ./scripts/all-tests.sh "Unix" |