diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 368b888d..ac0d96e0 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -18,8 +18,6 @@ env: jobs: pre-commit: runs-on: ubuntu-latest - env: - UV_CACHE_DIR: /tmp/.uv-cache steps: - uses: actions/checkout@master @@ -31,14 +29,6 @@ jobs: uses: actions/setup-python@v5 with: python-version-file: "api/pyproject.toml" - - name: Restore uv cache - uses: actions/cache@v4 - with: - path: /tmp/.uv-cache - key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - restore-keys: | - uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - uv-${{ runner.os }} - name: Install deps run: | @@ -48,9 +38,6 @@ jobs: - name: Run tests run: uv run pytest - - name: Minimize uv cache - run: uv cache prune --ci - test-api: runs-on: ubuntu-latest steps: