Skip to content

Commit 0142bb4

Browse files
committed
fixed github action
1 parent 056a573 commit 0142bb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v1
20-
- name: Select Xcode 15.2
21-
run: sudo xcode-select -s /Applications/Xcode_15.2.app
20+
- name: Select Xcode 16.0
21+
run: sudo xcode-select -s /Applications/Xcode_16.0.app
2222
- name: List SDKs and Devices
2323
run: xcodebuild -showsdks
2424

2525
- name: Build and Test
2626
run: |
27-
set -o pipefail && swift test --enable-code-coverage | xcpretty -c;
27+
set -o pipefail && swift test --no-parallel --enable-code-coverage | xcpretty -c;
2828
env:
2929
SDK: ${{ matrix.env.sdk }}
3030
DESTINATION: ${{ matrix.env.destination }}

0 commit comments

Comments
 (0)