Skip to content

Commit 28205e3

Browse files
author
DominicGBauer
committed
fix: ci issue
1 parent 68b2f9b commit 28205e3

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212
- name: Build
13-
run: swift build
14-
- name: Run tests
15-
run: swift test
13+
run: |
14+
xcodebuild build \
15+
-scheme PowerSyncSwift \
16+
-destination "platform=iOS Simulator,name=iPhone 16"
17+
- name: Test
18+
run: |
19+
xcodebuild test \
20+
-scheme PowerSyncSwift \
21+
-destination "platform=iOS Simulator,name=iPhone 16"

0 commit comments

Comments
 (0)