Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: invoke linters without pre-commit #222

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
version: latest

- name: Check uv.lock
run: uv run --frozen pre-commit run uv-lock-check --all-files
run: uv lock --check

- name: Lint (ruff)
run: uv run --frozen ruff check . --config pyproject.toml --output-format=github --no-fix

- name: Formatting (ruff)
run: uv run --frozen pre-commit run ruff-format --all-files --show-diff-on-failure
run: uv run --frozen ruff format

- name: Typing (pyright)
run: uv run --frozen pre-commit run pyright --all-files
run: uv run --frozen pyright

test:
name: Test
Expand Down
Loading