Fix bugs in measuring distance to bezier paths #63
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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build | |
| run: swift build -v | |
| - name: Run macOS tests | |
| run: swift test -v | |
| - name: Run iOS tests | |
| run: xcodebuild test -scheme BaseKit -destination platform="iOS Simulator,name=iPhone 11 Pro" | |
| - name: Run tvOS tests | |
| run: xcodebuild test -scheme BaseKit -destination platform="tvOS Simulator,name=Apple TV 4K (3rd generation)" |