Update pylint command

This commit is contained in:
papi 2023-12-26 23:36:46 +03:00
parent 2b5dc36dc5
commit 43290a9f90

View File

@ -9,15 +9,15 @@ jobs:
matrix: matrix:
python-version: ["3.8", "3.9", "3.10"] python-version: ["3.8", "3.9", "3.10"]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3 uses: actions/setup-python@v3
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install pylint pip install pylint
- name: Analysing the code with pylint - name: Analysing the code with pylint
run: | run: |
pylint --ignore=.*/migrations $(git ls-files '*.py') pylint --disable=missing-function-docstring --disable=missing-module-docstring --disable=missing-class-docstring --disable=too-few-public-methods $(git ls-files '*.py' | grep -v '/migrations/')