Skip to content

Commit

Permalink
ci: run ruff & pyright
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Feb 5, 2024
1 parent 477a2c6 commit eb78482
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,9 @@ jobs:
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Run ruff format
run: poetry run ruff format --check --diff
- name: Run ruff check
run: poetry run ruff format --diff
run: poetry run ruff check --output-format github
- name: Run pyright
run: poetry run pyright

0 comments on commit eb78482

Please sign in to comment.