From 6f20150e6ede7cca9ad44a16ef14d008deb6804e Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Sat, 7 Oct 2023 08:16:27 -0400 Subject: [PATCH] workflows: update linter action arguments Signed-off-by: Eric Callahan --- .github/workflows/test_code.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_code.yaml b/.github/workflows/test_code.yaml index f8e7642..90fd103 100644 --- a/.github/workflows/test_code.yaml +++ b/.github/workflows/test_code.yaml @@ -12,8 +12,9 @@ jobs: python-root-list: "moonraker scripts" virtual-env: "python-lint-plus" python-version: "3.10" - use-pycodestyle: true - use-black: false + use-flake8: true + flake8-version: "==6.1.0" use-mypy: true - extra-pycodestyle-options: "--ignore=E226,E301,E302,E303,W503,W504 --max-line-length=88 --max-doc-length=88" + mypy-version: "==1.5.1" + extra-flake8-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"