Skip to content

Commit

Permalink
Restore uv cache on windows too
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Sep 28, 2024
1 parent 34247b7 commit 927e251
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ jobs:
uv-${{ runner.os }}-${{ hashFiles('back/uv.lock') }}
uv-${{ runner.os }}
- name: Restore uv cache
uses: actions/cache@v4
if: ${{ matrix.os == 'windows-latest' }}
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('back\uv.lock') }}
restore-keys: |
uv-${{ runner.os }}-${{ hashFiles('back\uv.lock') }}
uv-${{ runner.os }}
- name: Install the project dependencies
run: |
cd back
Expand Down

0 comments on commit 927e251

Please sign in to comment.