We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58b202 commit 0711adfCopy full SHA for 0711adf
.github/workflows/lint.yml
@@ -27,21 +27,12 @@ jobs:
27
- name: install packages to tests
28
run: pip install ./psycopg[dev,test]
29
30
- - name: Run black
31
- run: black --check --diff .
32
-
33
- - name: Run flake8
34
- run: flake8
35
36
- - name: Run mypy
37
- run: mypy
+ - name: Lint codebase
+ run: pre-commit run -a --color=always
38
39
- name: Check for sync/async inconsistencies
40
run: ./tools/async_to_sync.py --check --all
41
42
- - name: Check spelling
43
- run: codespell
44
45
- name: Install requirements to generate docs
46
run: sudo apt-get install -y libgeos-dev
47
0 commit comments