Skip to content

Commit 044705f

Browse files
committed
🔧CI struggled with installing tools with uv, sep onto different lines.
1 parent 1edd853 commit 044705f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ jobs:
2525
restore-keys: |
2626
uv-${{ runner.os }}-
2727
28-
- name: Install tools with uv
29-
run: uv tool install ruff mypy
28+
- name: Install tools with uv - ruff
29+
run: uv tool install ruff
30+
- name: Install mypy with uv
31+
run: uv tool install mypy
3032

3133
- name: Ruff lint
3234
run: ruff check .

0 commit comments

Comments
 (0)