Skip to content

Commit 53c55ca

Browse files
committed
Use iPhone 15 on macos-13
1 parent 32e299e commit 53c55ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ jobs:
6666
uses: ./.github/actions/setup-build
6767
- name: Build and Test ${{ env.PACKAGE_NAME }}
6868
run: |
69-
./gradlew build
69+
if [ "${{ matrix.os }}" = "macos-13" ]; then
70+
./gradlew build -PiosSimulatorDevice="iPhone 15"
71+
else
72+
./gradlew build
73+
fi
7074
- name: Save Test Reports
7175
if: failure()
7276
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)