File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -5,23 +5,28 @@ on: [pull_request]
5
5
6
6
jobs :
7
7
test :
8
+
9
+ # https://github.com/actions/runner-images/tree/main/images/macos
8
10
strategy :
9
11
matrix :
10
12
include :
11
- - xcodeVersion : ' 13.1'
12
- iosVersion : ' 15.0'
13
- deviceName : iPhone 13
14
- - xcodeVersion : ' 14.2'
15
- iosVersion : ' 16.2'
16
- deviceName : iPhone 14
13
+ - xcodeVersion : ' 14.3.1'
14
+ iosVersion : ' 16.4'
15
+ deviceName : ' iPhone 14'
16
+ platform : macos-13
17
+ - xcodeVersion : ' 15.4'
18
+ iosVersion : ' 17.5'
19
+ deviceName : ' iPhone 15'
20
+ platform : macos-14
21
+ fail-fast : false
22
+
17
23
env :
18
24
CI : true
19
25
_FORCE_LOGS : 1
20
26
DEVICE_NAME : ${{ matrix.deviceName }}
21
27
XCODE_VERSION : ${{ matrix.xcodeVersion }}
22
28
IOS_SDK : ${{ matrix.iosVersion }}
23
- # https://github.com/actions/runner-images/tree/main/images/macos
24
- runs-on : macos-12
29
+ runs-on : ${{ matrix.platform }}
25
30
steps :
26
31
- uses : actions/checkout@v3
27
32
- uses : actions/setup-node@v3
You can’t perform that action at this time.
0 commit comments