File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Setup
2+ description : Setup the airbnb/swift CI Environment
3+ inputs :
4+ xcode :
5+ description : The version of Xcode to select
6+ runs :
7+ using : composite
8+ steps :
9+ - name : Select Xcode ${{ inputs.xcode }}
10+ run : sudo xcode-select --switch /Applications/Xcode_${{ inputs.xcode }}.app
11+ if : ${{ inputs.xcode }}
12+ shell : bash
Original file line number Diff line number Diff line change 77 branches : [ master ]
88
99jobs :
10- test-package-plugin :
10+ test-package-plugin-macos-12 :
1111 name : Test Package Plugin
1212 runs-on : macos-12
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ xcode :
17+ - ' 13.4.1' # Swift 5.6
18+ steps :
19+ - uses : actions/checkout@v2
20+ - name : Test Package Plugin
21+ run : swift package --allow-writing-to-package-directory format --lint
22+
23+ test-package-plugin-macos-13 :
24+ name : Test Package Plugin
25+ runs-on : macos-13
26+ strategy :
27+ fail-fast : false
28+ matrix :
29+ xcode :
30+ - ' 14.2' # Swift 5.7
31+ - ' 14.3' # Swift 5.8
1332 steps :
1433 - uses : actions/checkout@v2
1534 - name : Test Package Plugin
You can’t perform that action at this time.
0 commit comments