-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (57 loc) · 1.56 KB
/
linting.yaml
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
# Official docs:
# - https://docs.github.com/en/actions
# - https://github.com/actions
name: Linting
env:
POETRY_VERSION: "1.4.0"
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- main
permissions:
contents: read
jobs:
run-tests:
name: Python linters
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
# https://github.com/actions/setup-python
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Set up Poetry
run: |
pip install poetry==${{ env.POETRY_VERSION }}
- name: Install packages
run: |
make install
- name: Flake8
run: |
make flake8
- name: Ruff
run: |
make ruff-check
- name: Pylint
run: |
make pylint
- name: Mypy
run: |
make mypy
- name: Pyroma
run: |
make pyroma
- name: Poetry check
run: |
make poetry-check
- name: Poetry check lock
run: |
make poetry-check-lock