-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 942 Bytes
/
pod-lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Pod lint
on: pull_request
jobs:
pod-lint-10_15:
runs-on: macos-10.15
strategy:
matrix:
# latest 11 and all available versions 12
xcodeVersions: ['11.7', '12.0', '12.1', '12.2', '12.3', '12.4']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up XCode Version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcodeVersions }}
- name: Pod lint
run: pod lib lint
shell: bash
pod-lint-11:
runs-on: macos-11
strategy:
matrix:
# latest 12 and all available versions 13
xcodeVersions: ['12.5', '13.0', '13.1']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up XCode Version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcodeVersions }}
- name: Pod lint
run: pod lib lint
shell: bash