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 a97a0d4 commit fc53bf6Copy full SHA for fc53bf6
.github/workflows/ci.yml
@@ -32,6 +32,17 @@ jobs:
32
echo "key=$CACHE_KEY" >> $GITHUB_OUTPUT
33
echo "Cache key: $CACHE_KEY"
34
35
+ - name: Cache dependencies
36
+ uses: actions/cache@v4
37
+ with:
38
+ path: |
39
+ ~/.asdf
40
+ ~/.cache/pip
41
+ ~/.cache/uv
42
+ ~/.cargo
43
+ ~/.local/bin
44
+ key: ${{ steps.cache-key.outputs.key }}
45
+
46
- name: Setup asdf
47
uses: asdf-vm/actions/setup@v4
48
@@ -46,17 +57,6 @@ jobs:
57
curl -LsSf https://astral.sh/uv/install.sh | sh
58
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
59
49
- - name: Cache dependencies
50
- uses: actions/cache@v4
51
- with:
52
- path: |
53
- ~/.asdf
54
- ~/.cache/pip
55
- ~/.cache/uv
56
- ~/.cargo
- ~/.local/bin
- key: ${{ steps.cache-key.outputs.key }}
-
60
- name: Install Python dependencies
61
run: |
62
uv sync --dev
0 commit comments