-
Notifications
You must be signed in to change notification settings - Fork 8
83 lines (77 loc) · 2.29 KB
/
linters.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
name: Linters
on:
push: {}
workflow_dispatch: {}
jobs:
mypy:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install mypy
run: pip3 install mypy
- name: Run mypy on backend
working-directory: ${{github.workspace}}/application
run: |
mkdir .mypy_cache
mypy . --non-interactive --cache-dir=.mypy_cache/
- name: Run mypy on python-client
working-directory: ${{github.workspace}}/python-client
run: |
mkdir .mypy_cache
mypy .--non-interactive --cache-dir=.mypy_cache/
flake8:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install flake8
run: pip3 install flake8
- name: Run flake8 on backend
working-directory: ${{github.workspace}}/application
run: flake8 .
- name: Run flake8 on python-client
working-directory: ${{github.workspace}}/python-client
run: flake8 .
black:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install black
run: pip3 install black
- name: Run black on backend
working-directory: ${{github.workspace}}/application
run: black --check .
- name: Run black on python-client
working-directory: ${{github.workspace}}/python-client
run: black --check .
isort:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install isort
run: pip3 install isort
- name: Run isort on backend
working-directory: ${{github.workspace}}/application
run: isort --check .
- name: Run isort on python-client
working-directory: ${{github.workspace}}/python-client
run: isort --check .