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 e90704a commit 489618fCopy full SHA for 489618f
.github/workflows/pylint.yml
@@ -18,7 +18,7 @@ jobs:
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
21
- pip install pylint mysqlclient black
+ pip install -f requirements.txt
22
- name: Check for compile errors with pylint
23
24
pylint -E $(git ls-files '*.py' schema-tool)
requirements.txt
@@ -2,3 +2,4 @@ mysqlclient
2
black>=21.0 # need 21 for py3.10 compat
3
argparse
4
click<8.1 # 8.1 breaks black 21
5
+pylint
0 commit comments