Skip to content

Commit

Permalink
fix CI lint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyheppell committed Jul 2, 2024
1 parent 769a030 commit e0acdc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit e0acdc7

Please sign in to comment.