We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34247b7 commit 927e251Copy full SHA for 927e251
.github/workflows/test.yml
@@ -46,6 +46,16 @@ jobs:
46
uv-${{ runner.os }}-${{ hashFiles('back/uv.lock') }}
47
uv-${{ runner.os }}
48
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
+
59
- name: Install the project dependencies
60
run: |
61
cd back
0 commit comments