We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19aef0c commit 4928f19Copy full SHA for 4928f19
.github/workflows/ci.yml
@@ -29,19 +29,8 @@ jobs:
29
with:
30
python-version: ${{ matrix.python-version }}
31
32
- - uses: actions/cache@v4
33
- env:
34
- UV_CACHE_DIR: ~/.cache/uv
35
- with:
36
- path: "${{ env.UV_CACHE_DIR }}"
37
- key: ${{ runner.os }}-uv-${{ hashFiles('pyproject.toml') }}
38
- restore-keys: |
39
- ${{ runner.os }}-uv-
40
-
+ # We do not use the cache action as uv is faster than the cache action.
41
- name: "Install dependencies"
42
43
- # `/home/runner` is the result of running `readlink -f ~` on the runner.
44
- UV_CACHE_DIR: /home/runner/.cache/uv
45
run: |
46
curl -LsSf https://astral.sh/uv/install.sh | sh
47
uv venv /home/runner/.venv
0 commit comments