Skip to content

Commit ad34182

Browse files
committed
add clean uv cache in pypi.yml
1 parent ab8ccd1 commit ad34182

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/pypi.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@ jobs:
2525
- name: Setup Python
2626
run: uv python install 3.11
2727

28+
- name: Clean old uv caches
29+
run: |
30+
uv cache clean
31+
rm -rf .venv uv.lock
32+
2833
- name: Install dependencies
29-
run: uv sync --all-extras # Install all dependencies including dev
34+
run: uv sync --all-extras -v # Install all dependencies including dev
3035

3136
- name: Build package
3237
run: uv build

0 commit comments

Comments
 (0)