File tree Expand file tree Collapse file tree 2 files changed +5
-26
lines changed Expand file tree Collapse file tree 2 files changed +5
-26
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,10 @@ jobs:
16
16
xcode :
17
17
- 11.4
18
18
- 11.5
19
+ - 11.6
19
20
steps :
20
21
- uses : actions/checkout@v2
21
22
- name : Select Xcode ${{ matrix.xcode }}
22
23
run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
23
24
- name : Run tests
24
- run : make test-swift
25
-
26
- examples :
27
- runs-on : macOS-latest
28
- strategy :
29
- matrix :
30
- xcode :
31
- - 11.4
32
- - 11.5
33
- steps :
34
- - uses : actions/checkout@v2
35
- - name : Select Xcode ${{ matrix.xcode }}
36
- run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
37
- - name : Run tests
38
- run : make test-workspace
25
+ run : make test
Original file line number Diff line number Diff line change @@ -2,17 +2,9 @@ PLATFORM_IOS = iOS Simulator,name=iPhone 11 Pro Max
2
2
PLATFORM_MACOS = macOS
3
3
PLATFORM_TVOS = tvOS Simulator,name=Apple TV 4K (at 1080p)
4
4
5
- default : test-all
5
+ default : test
6
6
7
- test-all : test-swift test-workspace
8
-
9
- test-swift :
10
- swift test \
11
- --enable-pubgrub-resolver \
12
- --enable-test-discovery \
13
- --parallel
14
-
15
- test-workspace :
7
+ test :
16
8
instruments -s devices
17
9
xcodebuild test \
18
10
-scheme ComposableArchitecture \
@@ -70,4 +62,4 @@ format:
70
62
swift format --in-place --recursive \
71
63
./Examples ./Package.swift ./Sources ./Tests
72
64
73
- .PHONY : format test-all test-swift test-workspace
65
+ .PHONY : format test
You can’t perform that action at this time.
0 commit comments