We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11b7fd8 commit 2c3489aCopy full SHA for 2c3489a
.github/workflows/pylint.yml
@@ -14,14 +14,20 @@ jobs:
14
15
steps:
16
- uses: actions/checkout@v2
17
- - name: Set up Python 3.8
+ - name: Set up Python 3.9.5
18
uses: actions/setup-python@v1
19
with:
20
- python-version: 3.8
+ python-version: 3.9.5
21
- name: Install dependencies
22
run: |
23
python -m pip install --upgrade pip
24
pip install pylint
25
- name: Analysing the code with pylint
26
27
- pylint `ls -R|grep .py$|xargs`
+ pylint --fail-under=10 `find -regextype egrep -regex '(.*.py)$'`
28
+ | tee pylint.txt
29
+ - name: Upload pylint.txt as artifact
30
+ uses: actions/upload-artifact@v2
31
+ with:
32
+ name: pylint report
33
+ path: pylint.txt
0 commit comments