Skip to content

Commit

Permalink
fix syntax uv
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaMarconato committed Feb 12, 2025
1 parent eb91421 commit 63ac5d5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,14 @@ jobs:
cache-dependency-glob: |
**/pyproject.toml
# **/uv.lock # uncomment if we start using a lockfile
- name: Print uv cache status
run:
echo "Cache hit status: ${{ steps.setup-uv.outputs.cache-hit }}"
- name: Debug uv cache hit
run: |
if [ "${{ steps.setup-uv.outputs.cache-hit }}" == "true" ]; then
echo "uv cache hit"
else
echo "uv cache miss"
fi
- name: Install dependencies
run: |
uv sync --extra dev --extra test --extra torch
Expand Down

0 comments on commit 63ac5d5

Please sign in to comment.