From 20782878726c71639571dad08cd5653464beee71 Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Sun, 25 Jun 2023 07:44:03 -0400 Subject: [PATCH] github: update linter action Signed-off-by: Eric Callahan --- .github/workflows/test_code.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_code.yaml b/.github/workflows/test_code.yaml index 3aa515c..f8e7642 100644 --- a/.github/workflows/test_code.yaml +++ b/.github/workflows/test_code.yaml @@ -7,14 +7,13 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - - uses: ricardochaves/python-lint@v1.4.0 + - uses: weibullguy/python-lint-plus@v1.12.0 with: python-root-list: "moonraker scripts" - use-pylint: false + virtual-env: "python-lint-plus" + python-version: "3.10" use-pycodestyle: true - use-flake8: false use-black: false use-mypy: true - use-isort: false extra-pycodestyle-options: "--ignore=E226,E301,E302,E303,W503,W504 --max-line-length=88 --max-doc-length=88" extra-mypy-options: "--ignore-missing-imports --follow-imports=silent"