RD-1432: Add circle layer (#185) #256
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: Swift Tests | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set Up Swift | |
| uses: maxim-lobanov/setup-xcode@592f3a0ea6269bc3452fd67ae771c3174f6d01cf | |
| with: | |
| xcode-version: '16.2' | |
| - name: Select Xcode | |
| run: sudo xcode-select --switch /Applications/Xcode_16.2.app | |
| - name: Verify Swift Version | |
| run: swift --version | |
| - name: Verify Xcode version | |
| run: xcodebuild -version | |
| - name: Verify Active Swift Toolchain version | |
| run: xcrun swift -version | |
| - name: Run tests | |
| run: xcrun xcodebuild test -scheme MapTilerSDK -destination 'platform=iOS Simulator,name=iPhone 16' |