Added distance
#6
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: iOS | |
on: [pull_request] | |
jobs: | |
build: | |
timeout-minutes: 5 | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Generate iOS xcodeproj | |
run: swift package generate-xcodeproj | |
- name: Run iOS tests | |
run: xcodebuild build test -destination 'name=iPhone 11' -scheme 'RectangleTools-Package' | |