-
Notifications
You must be signed in to change notification settings - Fork 14
48 lines (44 loc) · 1.14 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
name: Linters
on: [pull_request]
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install mypy
run: |
python3 -m pip install mypy types-PyYAML types-setuptools
- name: Add matcher
run: |
echo "::add-matcher::.github/workflows/mypy-problem-matcher.json"
- name: Install package
run: |
pip install .
- name: Run mypy
run: |
python3 -m mypy --exclude=build .
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install
run: |
python3 -m pip install flake8
- name: Add matcher
run: |
echo "::add-matcher::.github/workflows/flake8-problem-matcher.json"
- name: Lint with flake8
run: |
python3 -m flake8 .
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable