diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 5ee301a..2e56f42 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -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: