Adds support for multiple git refs #19
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: | |
- main | |
paths-ignore: | |
- 'README.md' | |
- 'CODE_OF_CONDUCT.md' | |
- '.editorconfig' | |
- '.spi.yml' | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer | |
jobs: | |
test: | |
name: Test | |
runs-on: macOS-13 | |
strategy: | |
matrix: | |
destination: | |
- "platform=macOS" | |
- "platform=iOS Simulator,name=iPhone 12" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test platform ${{ matrix.destination }} | |
run: set -o pipefail && xcodebuild -scheme XcodeCloudKit -destination "${{ matrix.destination }}" test | xcbeautify | |
linux_test: | |
name: Test Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install swiftly | |
run: curl -L https://swift-server.github.io/swiftly/swiftly-install.sh | bash -s -- -y | |
- name: Install the latest Swift toolchain | |
run: swiftly install latest | |
- name: Test | |
run: swift test |