Merge pull request #641 from andyfinnell/support-xcode-15 #355
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- 'releases/*' | |
pull_request: | |
branches: | |
- master | |
env: | |
# Use Xcode 15.2 or newer to support VisionOS | |
DEVELOPER_DIR: /Applications/Xcode_15.2.app | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
platform: ['iOS Simulator,name=iPhone 15'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Analyze | |
run: make analyze | |
test: | |
name: Test | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
platform: ['iOS Simulator,name=iPhone 15'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test | |
run: make test | |
cocoapods: | |
name: CocoaPods | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: CocoaPods | |
run: make cocoapods | |
carthage: | |
name: Carthage | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Carthage | |
run: make carthage | |
swift-package-manager: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Verify that PINRemoteImage can be build by SPM | |
run: make spm | |
example-spm-xcode: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Verify that PINRemoteImage can be build by Xcode's SPM integration | |
run: make example |