Remove unused GRDB data convertible code #528
Workflow file for this run
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: Build and test | |
| on: | |
| push: | |
| workflow_call: | |
| jobs: | |
| build: | |
| name: Build and test | |
| runs-on: macos-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up XCode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Test with strict concurrency | |
| run: | | |
| swift build -Xswiftc -strict-concurrency=complete | |
| swift test -Xswiftc -strict-concurrency=complete | |
| - name: List available simulator targets | |
| run: xcrun xctrace list devices | |
| - name: Test on iOS simulator | |
| run: xcodebuild test -scheme PowerSync-Package -destination "platform=iOS Simulator,name=iPhone 16" | |
| - name: Test on macOS simulator | |
| run: xcodebuild test -scheme PowerSync-Package -destination "platform=macOS,arch=arm64,name=My Mac" | |
| - name: Test on watchOS simulator | |
| run: xcodebuild test -scheme PowerSync-Package -destination "platform=watchOS Simulator,arch=arm64,name=Apple Watch Ultra 2 (49mm)" | |
| - name: Test on tvOS simulator | |
| run: xcodebuild test -scheme PowerSync-Package -destination "platform=tvOS Simulator,arch=arm64,name=Apple TV" |