-
Notifications
You must be signed in to change notification settings - Fork 30
129 lines (106 loc) · 3.12 KB
/
lint-push.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Lint Source
on:
push:
branches: [ master ]
jobs:
lint-shellcheck:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Runs shell script static analysis
run: |
sudo apt-get install shellcheck
./run-tests.sh --check-shellscript
lint-pydocstyle:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6.9
- name: Check compliance with Python docstring conventions
run: |
pip install pydocstyle
./run-tests.sh --check-pydocstyle
lint-flake8:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6.9
- name: Check compliance with pep8, pyflakes and circular complexity
run: |
pip install flake8
./run-tests.sh --check-flake8
lint-black:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6.9
- name: Run black linter for python
run: |
pip install black
./run-tests.sh --check-black
lint-isort:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6.9
- name: isort your imports, so you don't have to.
run: |
pip install isort
./run-tests.sh --check-isort
lint-prettier:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2-beta
with:
node-version: "10"
- name: Run prettier
run: |
npm i -g prettier
prettier --check "ui/**/*.js"
lint-check-manifest:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6.9
- name: Check Python manifest completeness
run: |
pip install check-manifest
./run-tests.sh --check-manifest
lint-commit-quality:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
# fetch-depth is needed to get the full list of commits
# necessary for commit msg linting when a PR has 2 commits or more
# to avoid getting ALL the commits, we get current commits + origin
fetch-depth: ${{ github.event.pull_request.commits }} + 1
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6.9
- name: Checking commit quality (messages, signatures, spelling checks, etc)
env:
GIT_HEAD: ${{ github.event.after }}
GIT_ORIGIN: ${{ github.event.pull_request.base.sha }}
run: sh ./scripts/ci/prebuild.sh