Skip to content

Commit

Permalink
Oh look, the starter workflow is horribly broken.
Browse files Browse the repository at this point in the history
  • Loading branch information
SenorPez committed Jun 18, 2021
1 parent 8d32561 commit 831578c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Analysing the code with pylint
run: |
cd tridentweb/tridentweb
pylint `ls -R|grep .py$|xargs`
python -m 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 831578c

Please sign in to comment.