generated from freelawproject/new-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (44 loc) · 1.54 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
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2-beta
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: cd cl && pip install -r recap_email/requirements.txt && pip install -r tests/requirements.txt
- name: Black Code Formatter
uses: psf/black@stable
- name: Run flake8
uses: suo/flake8-github-action@releases/v1
with:
checkName: 'lint' # NOTE: this needs to be the same as the job name
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: isort Import Sorter
uses: isort/[email protected]
- name: pylint Error Checker
run: pylint --fail-under 9 -f colorized cl
- name: mypy Static Type Checker
run: mypy --ignore-missing-imports .
lint-report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2-beta
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: cd cl && pip install -r recap_email/requirements.txt && pip install -r tests/requirements.txt
- name: pylint Generate Report
run: >
pylint --exit-zero --load-plugins=pylint_json2html -f jsonextended cl |
pylint-json2html -f jsonextended -o pylint-report.html
- name: Upload report
uses: actions/upload-artifact@v2
with:
name: pylint report
path: pylint-report.html