-
Notifications
You must be signed in to change notification settings - Fork 16
63 lines (60 loc) · 1.63 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Lint
on:
push:
branches:
- master
- develop
- nightly
pull_request:
branches:
- master
- develop
jobs:
build:
name: Objective-C Linter
runs-on: macOS-latest
steps:
- name: Install automake
run: |
brew install automake
- name: Checkout DashSync
uses: actions/checkout@v3
with:
path: dashsync
submodules: recursive
- name: Create LFS file list
run: |
git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
working-directory: ./dashsync
- name: Restore LFS cache
uses: actions/cache@v3
id: lfs-cache
with:
path: dashsync/.git/lfs
key: lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull
working-directory: ./dashsync
- uses: actions/cache@v3
with:
path: ./dashsync/Example/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Rustup add targets
run: rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim
- name: Dependencies
working-directory: ./dashsync/Example
run: pod install --repo-update
- name: Install OCLint
run: |
brew tap oclint/formulae
brew install oclint
- name: Lint
working-directory: ./dashsync/Example
run: |
sh run_oclint.sh
- name: Check Lint
working-directory: ./dashsync/Example
run: |
sh check_lint.sh