Skip to content

Commit a580537

Browse files
authored
Update python-test-publish.yml
Add lint checks
1 parent e572bd7 commit a580537

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/python-test-publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install setuptools wheel twine
30+
pip install setuptools wheel twine pylint
31+
- name: Analysing the code with pylint
32+
run: |
33+
pylint `ls -R|grep .py$|xargs`
3134
- name: Build and publish
3235
env:
3336
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}

0 commit comments

Comments
 (0)