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 .