Skip to content

Commit d41a6f8

Browse files
authored
ci: invoke linters without pre-commit (#222)
1 parent 4676bbd commit d41a6f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-app.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
version: latest
2626

2727
- name: Check uv.lock
28-
run: uv run --frozen pre-commit run uv-lock-check --all-files
28+
run: uv lock --check
2929

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

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

3636
- name: Typing (pyright)
37-
run: uv run --frozen pre-commit run pyright --all-files
37+
run: uv run --frozen pyright
3838

3939
test:
4040
name: Test

0 commit comments

Comments
 (0)