File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ on: [pull_request]
5
5
jobs :
6
6
build :
7
7
8
- timeout-minutes : 5
8
+ timeout-minutes : 3
9
9
runs-on : macOS-latest
10
10
11
11
steps :
12
12
- uses : actions/checkout@v1
13
- - name : Generate iOS xcodeproj
14
- run : swift package generate-xcodeproj
13
+ - name : Build
14
+ run : swift build
15
15
- name : Run iOS tests
16
16
run : xcodebuild build test -destination 'name=iPhone 11' -scheme 'RectangleTools-Package'
17
17
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [pull_request]
5
5
jobs :
6
6
build :
7
7
8
- timeout-minutes : 5
8
+ timeout-minutes : 3
9
9
runs-on : macOS-latest
10
10
11
11
steps :
Original file line number Diff line number Diff line change
1
+ name : watchOS
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ timeout-minutes : 3
9
+ runs-on : macOS-latest
10
+
11
+ steps :
12
+ - uses : actions/checkout@v1
13
+ - name : Build
14
+ run : swift build
15
+ - name : Run watchOS tests
16
+ run : xcodebuild build test -destination 'name=Apple Watch Ultra 2 (49mm)' -scheme 'RectangleTools-Package'
17
+
You can’t perform that action at this time.
0 commit comments