Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
Addresses issues in actions/starter-workflows#636
  • Loading branch information
ModernMAK committed May 2, 2021
1 parent 378fe66 commit 604221a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,10 @@ jobs:
pip install pylint
- name: Analysing the code with pylint
run: |
pylint `ls -R|grep .py$|xargs`
pylint --fail-under=10 `find -regextype egrep -regex '(.*.py)$'`
| tee pylint.txt
- name: Upload pylint.txt as artifact
uses: actions/upload-artifact@v2
with:
name: pylint report
path: pylint.txt

0 comments on commit 604221a

Please sign in to comment.