Skip to content

Commit 0bbe63b

Browse files
committed
use uv run for CI
1 parent e1b78e9 commit 0bbe63b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci-python.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ jobs:
2020

2121
- uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
2222

23-
- name: Run ruff check
24-
run: ruff check
25-
- name: Run ruff format
26-
run: ruff format
23+
- name: Format
24+
run: uv run ruff format
25+
26+
- name: Lint
27+
run: uv run ruff check
28+
2729
- name: Run mypy
28-
run: mypy .
30+
run: uv run mypy .
2931

3032
test:
3133
strategy:

0 commit comments

Comments
 (0)