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