Skip to content

Commit

Permalink
ci(lint): run lint steps without poe, remove black
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertRosca committed Oct 2, 2024
1 parent c82118e commit 7dc9be4
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,12 @@ jobs:

- name: Lint - ruff
if: always()
run: poetry run poe ruff

- name: Lint - black
if: always()
run: poetry run poe black --check
run: poetry run ruff check ./src ./tests

- name: Lint - mypy
if: always()
run: poetry run poe mypy
run: poetry run mypy

- name: Lint - pyright
if: always()
run: poetry run poe pyright
run: poetry run pyright

0 comments on commit 7dc9be4

Please sign in to comment.