Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Löfgren committed May 15, 2021
1 parent 3462b49 commit a3bf702
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,10 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- 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 a3bf702

Please sign in to comment.