Skip to content

Commit 9aae969

Browse files
committed
CI: clear caches before install
1 parent 5fd3220 commit 9aae969

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pr-checks.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,12 @@ jobs:
5252
run: |
5353
echo "Installing dependencies..."
5454
python -m pip install --upgrade pip uv -q
55-
python -m pip install --only-binary=:all: psutil==5.9.8 -q
55+
python -m pip cache purge || true
56+
rm -rf ~/.cache/pip ~/.cache/uv ~/.cache/uv-build || true
57+
uv cache clean || true
58+
python -m pip install --only-binary=:all: psutil==5.9.8 -q --no-cache-dir
5659
uv pip compile pyproject.toml -o requirements.txt --universal --all-extras
57-
python -m pip install -r requirements.txt -q
60+
python -m pip install -r requirements.txt -q --no-cache-dir
5861
echo "Dependencies installed."
5962
6063
# --- Ruff Formatting & Linting --- #

0 commit comments

Comments
 (0)