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 a580537 commit a09592cCopy full SHA for a09592c
.github/workflows/python-test-publish.yml
@@ -30,7 +30,13 @@ jobs:
30
pip install setuptools wheel twine pylint
31
- name: Analysing the code with pylint
32
run: |
33
- pylint `ls -R|grep .py$|xargs`
+ python -m pylint --fail-under=10 `find -regextype egrep -regex '(.*.py)$'` |
34
+ tee pylint.txt
35
+ - name: Upload pylint.txt as artifact
36
+ uses: actions/upload-artifact@v2
37
+ with:
38
+ name: pylint report
39
+ path: pylint.txt
40
- name: Build and publish
41
env:
42
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
0 commit comments