From add80d7b8fc80a4d220ec9196e7b01142042ea6f Mon Sep 17 00:00:00 2001 From: Kevin Petremann <13746171+kpetremann@users.noreply.github.com> Date: Thu, 8 Aug 2024 18:36:19 +0200 Subject: [PATCH] ci: migrate to ruff check subcommand --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6772c3..ebb1d64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: pip install -r requirements/dev.txt - name: Lint with Ruff - run: ruff . + run: ruff check . - name: Lint with Black run: black . --check --diff