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 a7aee60 commit fecfe24Copy full SHA for fecfe24
.github/workflows/python-test-publish.yml
@@ -39,13 +39,18 @@ jobs:
39
python -m pip install --upgrade pip
40
pip install \
41
isort~=5.12.0 \
42
- black~=23.9.1
+ black~=23.9.1 \
43
+ pylint~=3.0.2
44
- name: Check import style with isort
45
run: |
46
isort . --check --profile black --diff
47
- name: Check code style with Black
48
49
black . --check --diff
50
+ - name: Check for undefined types with Pylint
51
+ run: |
52
+ set -e
53
+ pylint --disable=all --enable=E0602 $(find . -type f -name "*.py")
54
55
deploy:
56
runs-on: ubuntu-latest
0 commit comments