From a150808eb554eb851d29dff7967fe5776ae24792 Mon Sep 17 00:00:00 2001 From: Desiders Date: Tue, 20 Feb 2024 14:30:28 +0300 Subject: [PATCH] Add ruff format check instead of ruff check --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bb0bbf8..b075ff5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,7 +32,7 @@ jobs: id: ruff if: steps.changed-python-files.outputs.all_changed_files != '' && !cancelled() run: | - ruff check --config=pyproject.toml --show-fixes --output-format=github ${{ steps.changed-python-files.outputs.all_changed_files }} + ruff format --check --config=pyproject.toml -- --show-fixes --output-format=github ${{ steps.changed-python-files.outputs.all_changed_files }} - name: Isort id: isort