From 99e4b87fae6cd564bcb49d931d3a4b288103e7ea Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Sat, 11 Nov 2023 10:14:21 +1100 Subject: [PATCH] feat: use ruff in GH style-checks action --- .github/workflows/style-checks.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/style-checks.yml b/.github/workflows/style-checks.yml index 08ff8ba402..fc86af522e 100644 --- a/.github/workflows/style-checks.yml +++ b/.github/workflows/style-checks.yml @@ -18,8 +18,7 @@ jobs: - name: Install dependencies with pip run: | - pip install black flake8 Flake8-pyproject isort + pip install ruff - - run: isort --check-only . - - run: black --check . - - run: flake8 + - run: ruff check . + - run: ruff format --check .