Skip to content

Commit eb59fa7

Browse files
committed
WIP
1 parent b911a64 commit eb59fa7

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

.github/workflows/ci-xcode.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,31 @@ on:
1212

1313
jobs:
1414
xcode:
15-
name: Xcode ${{ matrix.xcode }} - ${{ matrix.platform }}
15+
name: Xcode ${{ matrix.xcode }} (Xcode Project)
1616
runs-on: macos-11
1717
strategy:
1818
matrix:
1919
xcode: ["12.4", "12.5", "13.0"]
20-
platform: [macos, ios, tvos]
2120
fail-fast: false
2221
env:
2322
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app
2423
steps:
2524
- uses: actions/checkout@v2
26-
- run: ./test ${{ matrix.platform }}
27-
- run: ./test ${{ matrix.platform }}_xcodespm
25+
- run: ./test macos
26+
- run: ./test ios
27+
- run: ./test tvos
28+
29+
xcode_spm:
30+
name: Xcode ${{ matrix.xcode }} (Swift Package)
31+
runs-on: macos-11
32+
strategy:
33+
matrix:
34+
xcode: ["12.4", "12.5", "13.0"]
35+
fail-fast: false
36+
env:
37+
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app
38+
steps:
39+
- uses: actions/checkout@v2
40+
- run: ./test macos_xcodespm
41+
- run: ./test ios_xcodespm
42+
- run: ./test tvos_xcodespm

0 commit comments

Comments
 (0)