From 43290a9f90269660e4de96ba6aeaecf8b8e9d672 Mon Sep 17 00:00:00 2001 From: papi Date: Tue, 26 Dec 2023 23:36:46 +0300 Subject: [PATCH] Update pylint command --- .github/workflows/pylint.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index fa1b0bf..cf87841 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -9,15 +9,15 @@ jobs: matrix: python-version: ["3.8", "3.9", "3.10"] steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install pylint - - name: Analysing the code with pylint - run: | - pylint --ignore=.*/migrations $(git ls-files '*.py') + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pylint + - name: Analysing the code with pylint + run: | + 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/')