From f657b26088f8ac7a8393a7cf9044460edfccf67a Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Wed, 22 Nov 2023 18:19:31 +0100 Subject: [PATCH] Run ruff in CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fbf6783..e9e0225 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,6 +136,11 @@ jobs: unbehead --check echo '::remove-matcher owner=headers::' + - name: Run ruff + if: success() || failure() + run: | + ruff check --output-format github . + - name: Run flake8 if: success() || failure() run: |