From ed51a74fd5b4506c98de43ae1aae92f449cd4d5e Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 20 May 2024 00:39:46 -0400 Subject: [PATCH] ci: re-add caching Signed-off-by: Henry Schreiner --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 397050be..f5f1540a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,13 +59,13 @@ jobs: python-version: ${{ matrix.python-version }} allow-prereleases: true - - name: Setup uv - uses: yezz123/setup-uv@v4 + - uses: hynek/setup-cached-uv@v1 + with: + cache-suffix: -${{ matrix.python-version }} - name: Install run: | - uv pip install --system pip install pytest-github-actions-annotate-failures - uv pip install --system -e .[test] + uv pip install --system -e.[test] pytest-github-actions-annotate-failures - name: Setup SSH tests if: runner.os != 'Windows'