File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,12 @@ jobs:
22
22
xcode :
23
23
- ' 14.1'
24
24
config : ['debug', 'release']
25
- scheme : ['Dependencies', 'ComposableArchitecture']
26
25
steps :
27
26
- uses : actions/checkout@v2
28
27
- name : Select Xcode ${{ matrix.xcode }}
29
28
run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
30
- - name : Run ${{ matrix.scheme }} ${{ matrix. config }} tests
31
- run : CONFIG=${{ matrix.config }} SCHEME=${{ matrix.scheme }} make test-library
29
+ - name : Run ${{ matrix.config }} tests
30
+ run : CONFIG=${{ matrix.config }} make test-library
32
31
33
32
library-evolution :
34
33
runs-on : macos-12
Original file line number Diff line number Diff line change @@ -7,17 +7,17 @@ PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 7 (45mm)
7
7
default : test-all
8
8
9
9
test-all : test-examples
10
- CONFIG=debug SCHEME=ComposableArchitecture test-library
11
- CONFIG=release SCHEME=ComposableArchitecture test-library
12
- CONFIG=debug SCHEME=Dependencies test-library
13
- CONFIG=release SCHEME=Dependencies test-library
10
+ CONFIG=debug test-library
11
+ CONFIG=release test-library
12
+ CONFIG=debug test-library
13
+ CONFIG=release test-library
14
14
15
15
test-library :
16
16
for platform in " $( PLATFORM_IOS) " " $( PLATFORM_MACOS) " " $( PLATFORM_MAC_CATALYST) " " $( PLATFORM_TVOS) " " $( PLATFORM_WATCHOS) " ; do \
17
17
xcodebuild test \
18
18
-configuration $(CONFIG ) \
19
19
-workspace ComposableArchitecture.xcworkspace \
20
- -scheme $( SCHEME ) \
20
+ -scheme ComposableArchitecture
21
21
-destination platform=" $$ platform" || exit 1; \
22
22
done ;
23
23
You can’t perform that action at this time.
0 commit comments