Test non-empty IndexSet.limitSpanningRange, documenting why max is in… #33
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 | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Test | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
destination: | |
- "platform=macOS" | |
- "platform=iOS Simulator,name=iPhone 12" | |
- "platform=tvOS Simulator,name=Apple TV" | |
- "platform=watchOS Simulator,name=Apple Watch Series 6 (40mm)" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test platform ${{ matrix.destination }} | |
run: set -o pipefail && xcodebuild -scheme Rearrange -destination "${{ matrix.destination }}" test | xcpretty |