File tree Expand file tree Collapse file tree 3 files changed +53
-24
lines changed Expand file tree Collapse file tree 3 files changed +53
-24
lines changed Original file line number Diff line number Diff line change 1
- name : CI
1
+ name : CI (SwiftPM)
2
2
3
3
on :
4
4
push :
5
5
branches :
6
6
- master
7
+ tags :
8
+ - " *"
7
9
pull_request :
8
10
branches :
9
11
- " *"
10
12
11
13
jobs :
12
- cocoapods :
13
- name : CocoaPods Lint
14
- runs-on : macos-latest
15
- steps :
16
- - uses : actions/checkout@v2
17
- - run : bundle install
18
- - run : ./test podspec
19
-
20
- xcode :
21
- name : Xcode ${{ matrix.xcode }} - ${{ matrix.platform }}
22
- runs-on : macos-latest
23
- strategy :
24
- matrix :
25
- xcode : [11.7, 12.4]
26
- platform : [macos, ios, tvos]
27
- fail-fast : false
28
- env :
29
- DEVELOPER_DIR : /Applications/Xcode_${{ matrix.xcode }}.app
30
- steps :
31
- - uses : actions/checkout@v2
32
- - run : ./test ${{ matrix.platform }}
33
- - run : ./test ${{ matrix.platform }}_xcodespm
34
-
35
14
swiftpm_darwin :
36
15
name : SwiftPM, Darwin, Xcode ${{ matrix.xcode }}
37
16
runs-on : macos-latest
Original file line number Diff line number Diff line change
1
+ name : CI (Xcode)
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ tags :
8
+ - " *"
9
+ pull_request :
10
+ branches :
11
+ - " *"
12
+
13
+ jobs :
14
+ xcode :
15
+ name : Xcode ${{ matrix.xcode }} - ${{ matrix.platform }}
16
+ runs-on : macos-latest
17
+ strategy :
18
+ matrix :
19
+ xcode : [11.7, 12.4]
20
+ platform : [macos, ios, tvos]
21
+ fail-fast : false
22
+ env :
23
+ DEVELOPER_DIR : /Applications/Xcode_${{ matrix.xcode }}.app
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ - run : ./test ${{ matrix.platform }}
27
+ - run : ./test ${{ matrix.platform }}_xcodespm
Original file line number Diff line number Diff line change
1
+ name : CocoaPods
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ tags :
8
+ - " *"
9
+ pull_request :
10
+ branches :
11
+ - " *"
12
+
13
+ jobs :
14
+ cocoapods :
15
+ name : CocoaPods Lint
16
+ runs-on : macos-latest
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ - uses : ruby/setup-ruby@v1
20
+ with :
21
+ ruby-version : 2.7
22
+ bundler-cache : true
23
+ - run : ./test podspec
You can’t perform that action at this time.
0 commit comments