We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd3220 commit 9aae969Copy full SHA for 9aae969
.github/workflows/pr-checks.yml
@@ -52,9 +52,12 @@ jobs:
52
run: |
53
echo "Installing dependencies..."
54
python -m pip install --upgrade pip uv -q
55
- python -m pip install --only-binary=:all: psutil==5.9.8 -q
+ 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
59
uv pip compile pyproject.toml -o requirements.txt --universal --all-extras
- python -m pip install -r requirements.txt -q
60
+ python -m pip install -r requirements.txt -q --no-cache-dir
61
echo "Dependencies installed."
62
63
# --- Ruff Formatting & Linting --- #
0 commit comments