Update infix operator spacing rule to clarify rule for operator defin… #402
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 ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-package-plugin-macos-12: | |
name: Test Package Plugin | |
runs-on: macos-12 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode: | |
- '13.4.1' # Swift 5.6 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Test Package Plugin | |
run: bundle exec rake lint:swift | |
test-package-plugin-macos-13: | |
name: Test Package Plugin | |
runs-on: macos-13 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode: | |
- '14.2' # Swift 5.7 | |
- '14.3' # Swift 5.8 | |
- '15.0' # Swift 5.9 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Test Package Plugin | |
run: bundle exec rake lint:swift | |
unit-tests: | |
name: Unit Tests | |
runs-on: macos-13 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode: | |
- '15.0' # Swift 5.9 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Run Unit Tests | |
run: swift test |