From f699fdd80bed36044b627e59e7ba61230b7a69cd Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 16 Jun 2024 19:56:23 +0200 Subject: [PATCH] Reverse Ruff check and fix order (#102) --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index f249ba3d..c2efc9e1 100644 --- a/action.yml +++ b/action.yml @@ -87,12 +87,12 @@ runs: - name: Run Python if: inputs.python == 'true' && github.event.action != 'closed' run: | - ruff format \ - --line-length 120 \ - . ruff check \ --fix \ . + ruff format \ + --line-length 120 \ + . docformatter \ --wrap-summaries 120 \ --wrap-descriptions 120 \