-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.15 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
name: Lint Codebase
on:
push:
branches: [ "main" ]
pull_request:
# Do not run on draft pull requests
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
run-lint:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} # Do not run on draft pull requests
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.10.6
uses: actions/setup-python@v5
with:
python-version: 3.10.6
- name: Install poetry
run: pip install poetry
- name: Install Dependencies
run: poetry install
- name: Check formatting with black
if: success() || failure()
run: |
poetry run black --check .
- name: Check import order with isort
if: success() || failure()
run: |
poetry run isort --check-only .
- name: Lint with flake8
if: success() || failure()
run: |
poetry run flake8 .
- name: Verify typing annotations
if: success() || failure()
run: |
poetry run mypy .