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 cf5e6b7 commit 6c2f2e2Copy full SHA for 6c2f2e2
1 file changed
.github/workflows/build.yml
@@ -9,15 +9,15 @@ on:
9
concurrency:
10
group: ci-${{ github.ref }}
11
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
12
-env:
13
- IOS_SIMULATOR: "iPhone 16"
14
- IOS_VERSION: "18.4"
15
jobs:
16
build:
17
strategy:
18
matrix:
19
os: [macos-15, macos-26]
20
runs-on: ${{ matrix.os }}
+ env:
+ IOS_SIMULATOR: ${{ matrix.os == 'macos-15' && 'iPhone 16' || 'iPhone 16e' }}
+ IOS_VERSION: ${{ matrix.os == 'macos-15' && '18.4' || '26.2' }}
21
steps:
22
- uses: actions/checkout@v4
23
- name: "Lint"
0 commit comments