Skip to content

Commit 1a8b6e9

Browse files
authored
Fix backend ci caching (#1490)
The caching step was outdated and still based on pipenv instead of uv
1 parent 0df94dd commit 1a8b6e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/backend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- id: cache-uv
3939
uses: actions/cache@v5
4040
with:
41-
path: ~/.local/share/virtualenvs
42-
key: ${{ runner.os }}-uv-${{ hashFiles('**/Pipfile.lock') }}
41+
path: ~/.cache/uv
42+
key: ${{ runner.os }}-uv
4343

4444
- name: Run tests
4545
run: uv run pytest --cov --cov-report=xml .

0 commit comments

Comments
 (0)