Skip to content

Commit

Permalink
update lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyheppell committed Jul 2, 2024
1 parent e6f47a5 commit 4739b87
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
run: poetry install --no-interaction --no-root
- name: Install Project
run: poetry install --no-interaction
- name: Lint with Black
run: poetry run black --check .
- name: Lint with Flake8
run: poetry run flake8 .
- name: Ruff Format Check
run: ruff format --check .
id: format
- name: Ruff Lint Check
run: ruff check --output-format=github .
# Still run if format check fails
if: success() || steps.format.conclusion == 'failure'

0 comments on commit 4739b87

Please sign in to comment.