From bbf968914be9b1d99a0809e5b83c9c3efd516a49 Mon Sep 17 00:00:00 2001 From: AugustLigh <125802350+AugustLigh@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:02:39 +0300 Subject: [PATCH] Update pylint.yml --- .github/workflows/pylint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 1249a20..91d29b6 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -22,4 +22,4 @@ jobs: pip install websocket-client - name: Analysing the code with pylint run: | - pylint $(git ls-files '*.py') + pylint $(git ls-files '*.py') --output=lint.txt || true