We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e299e commit 53c55caCopy full SHA for 53c55ca
.github/workflows/ci.yaml
@@ -66,7 +66,11 @@ jobs:
66
uses: ./.github/actions/setup-build
67
- name: Build and Test ${{ env.PACKAGE_NAME }}
68
run: |
69
- ./gradlew build
+ if [ "${{ matrix.os }}" = "macos-13" ]; then
70
+ ./gradlew build -PiosSimulatorDevice="iPhone 15"
71
+ else
72
+ ./gradlew build
73
+ fi
74
- name: Save Test Reports
75
if: failure()
76
uses: actions/upload-artifact@v4
0 commit comments