TwoDimensional operators: +-*/ #24
This file contains hidden or 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: iOS | |
on: [pull_request] | |
jobs: | |
build: | |
timeout-minutes: 6 | |
runs-on: macOS-latest | |
steps: | |
- name: Set up Swift 6 | |
uses: SwiftyLab/setup-swift@latest | |
with: | |
swift-version: '6.0' | |
- name: Swift version | |
run: swift --version | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build | |
- name: What schemes? | |
run: xcodebuild build test -list | |
- name: Run iOS tests | |
run: xcodebuild build test -destination 'name=iPhone 16' -scheme 'RectangleTools' | |