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 1f011cb commit 1dc3ddcCopy full SHA for 1dc3ddc
.github/workflows/build.yml
@@ -26,11 +26,11 @@ jobs:
26
- windows-latest
27
include:
28
- os: ubuntu-latest
29
- path: ~/.cache/uv
+ path: ~/.cache/pip
30
# - os: macos-latest
31
- # path: ~/Library/Caches/uv
+ # path: ~/Library/Caches/pip
32
- os: windows-latest
33
- path: ~\AppData\Local\uv\Cache
+ path: ~\AppData\Local\pip\Cache
34
runs-on: ${{ matrix.os }}
35
defaults:
36
run:
@@ -56,8 +56,8 @@ jobs:
56
uses: actions/cache@v4
57
with:
58
path: ${{ matrix.path }}
59
- key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock') }}
60
- restore-keys: ${{ runner.os }}-uv-
+ key: ${{ runner.os }}-pip-${{ hashFiles('uv.lock') }}
+ restore-keys: ${{ runner.os }}-pip-
61
62
- name: 📥 Install the project
63
run: uv sync --all-extras --dev
0 commit comments