Skip to content

Commit 664e211

Browse files
committed
try removing uv run prefix from CI commands
1 parent 96c25d5 commit 664e211

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
- run: uv sync --all-packages --all-groups
2424

2525
- name: Format
26-
run: uv run ruff format
26+
run: ruff format
2727

2828
- name: Lint
29-
run: uv run ruff check
29+
run: ruff check
3030

3131
- name: Run mypy
32-
run: uv run mypy .
32+
run: mypy .
3333

3434
test:
3535
name: Test

0 commit comments

Comments
 (0)