From 6f6bb21752144272eeb15a3410770a1b75371434 Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Wed, 21 Dec 2022 11:46:09 -0500 Subject: [PATCH] Use ruff instead of flake8. (#15) ruff is significantly faster than flake8 and covers a superset of the same linting checks. --- .github/workflows/python-poetry-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-poetry-ci.yml b/.github/workflows/python-poetry-ci.yml index 240e059..fcec206 100644 --- a/.github/workflows/python-poetry-ci.yml +++ b/.github/workflows/python-poetry-ci.yml @@ -33,8 +33,8 @@ jobs: - name: Code style (black) run: poetry run black --check --diff . - - name: Semantic checks (flake8) - run: poetry run flake8 + - name: Semantic checks (ruff) + run: poetry run ruff . mypy: runs-on: ubuntu-latest