From: Daan De Meyer Date: Mon, 25 Mar 2024 12:29:43 +0000 (+0100) Subject: ci: Use ruff check instead of ruff X-Git-Tag: v23~64^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2550%2Fhead;p=thirdparty%2Fmkosi.git ci: Use ruff check instead of ruff Fixes deprecation warning --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 054e9dfee..534550529 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - name: Run ruff run: | ruff --version - ruff mkosi/ tests/ kernel-install/50-mkosi.install + ruff check mkosi/ tests/ kernel-install/50-mkosi.install - name: Check that tabs are not used in code run: sh -c '! git grep -P "\\t" "*.py"'