File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -10,26 +10,25 @@ jobs:
10
10
runs-on : macos-latest
11
11
strategy :
12
12
matrix :
13
- device_model : ['iPhone 8 ', 'Apple TV 4K ']
13
+ os : ['tvOS ', 'watchOS', 'iOS ']
14
14
steps :
15
15
- uses : actions/checkout@v2
16
16
- uses : maxim-lobanov/setup-xcode@v1
17
- name : " Build for testing"
18
17
with :
19
18
xcode-version : ' 13.2.1'
20
19
- uses : actions/cache@v1
21
20
id : carthage-cache
22
21
with :
23
22
path : Carthage
24
23
key : ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
25
- - name : Carthage
24
+ - name : Build
26
25
if : steps.carthage-cache.outputs.cache-hit != 'true'
27
26
run : |
28
27
sh ./Consumption-Tests/Shared/carthage.sh bootstrap --cache-builds --use-xcframeworks
29
28
- uses : futureware-tech/simulator-action@v1
30
29
id : simulator
31
30
with :
32
- model : ${{ matrix.device_model }}
31
+ os : ${{ matrix.os }}
33
32
- name : " Run ${{ matrix.device_model }} Tests"
34
33
run : |
35
34
set -o pipefail && env NSUnbufferedIO=YES xcodebuild \
You can’t perform that action at this time.
0 commit comments