Skip to content

Commit 927e251

Browse files
committed
Restore uv cache on windows too
1 parent 34247b7 commit 927e251

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@ jobs:
4646
uv-${{ runner.os }}-${{ hashFiles('back/uv.lock') }}
4747
uv-${{ runner.os }}
4848
49+
- name: Restore uv cache
50+
uses: actions/cache@v4
51+
if: ${{ matrix.os == 'windows-latest' }}
52+
with:
53+
path: /tmp/.uv-cache
54+
key: uv-${{ runner.os }}-${{ hashFiles('back\uv.lock') }}
55+
restore-keys: |
56+
uv-${{ runner.os }}-${{ hashFiles('back\uv.lock') }}
57+
uv-${{ runner.os }}
58+
4959
- name: Install the project dependencies
5060
run: |
5161
cd back

0 commit comments

Comments
 (0)