From e0acdc7f30dc61ed1afbe92c99697ccefb14cee9 Mon Sep 17 00:00:00 2001 From: Freddy Heppell Date: Tue, 2 Jul 2024 14:16:06 +0100 Subject: [PATCH] fix CI lint commands --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 246b15c..cc58e65 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,9 +27,9 @@ jobs: - name: Install Project run: poetry install --no-interaction - name: Ruff Format Check - run: ruff format --check . + run: poetry run ruff format --check id: format - name: Ruff Lint Check - run: ruff check --output-format=github . + run: poetry run ruff check --output-format=github # Still run if format check fails if: success() || steps.format.conclusion == 'failure' \ No newline at end of file