Still trying to trigger pylint

This commit is contained in:
Jean-Michel Picod
2020-02-27 19:22:06 +01:00
parent 7a86f80e2b
commit db3b23cf22
2 changed files with 3 additions and 2 deletions

View File

@@ -26,7 +26,8 @@ jobs:
- name: Test code with pylint
run: |
echo ::add-matcher::./.github/python_matcher.json
find . ! -path "./third_party/*" -type f -name '*.py' -exec echo PYLINT:\{\} \; -exec pylint --rcfile=.pylintrc --score=n \{\} \;
find . -type f -name '*.py' -exec echo PYLINT:\{\} \; -exec pylint --rcfile=.pylintrc --score=n \{\} \;
# find . ! -path "./third_party/*" -type f -name '*.py' -exec echo PYLINT:\{\} \; -exec pylint --rcfile=.pylintrc --score=n \{\} \;
yapf:
runs-on: ubuntu-18.04