Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mich-31 authored Jan 10, 2024
1 parent 197133f commit 70cb60a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
pip install pylint
- name: Analysing the code with pylint
run: |
find src -type f -name "*.py" -exec pylint --disable=import-error,too-many-locals,line-too-long,too-few-public-methods,undefined-variable,wrong-import-position --output-format=text {} \; | tee pylint_report.txt
find src -type f -name "*.py" -exec pylint --disable=import-error,too-many-locals,line-too-long,too-few-public-methods,undefined-variable,wrong-import-position,missing-class-docstring --output-format=text {} \; | tee pylint_report.txt
- name: Upload report
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 70cb60a

Please sign in to comment.