-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (52 loc) · 1.22 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
57
58
name: Lint
on:
push:
jobs:
check-ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/actions/lint-install
- name: Run ruff
run: |
make check-ruff
check-black:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/actions/lint-install
- name: Run black
run: |
make check-black
check-isort:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/actions/lint-install
- name: Run isort
run: |
make check-isort
check-mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/actions/lint-install
- name: Run mypy
run: |
make check-mypy
check-pylint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/actions/lint-install
- name: Install dependencies
run: |
make install-dev SYNC=""
- name: Run pylint
run: |
make check-pylint