From c0efa6ad36c5293118abdfb5c062b5fe190f7dce Mon Sep 17 00:00:00 2001 From: Intron7 Date: Mon, 19 Aug 2024 15:22:50 +0200 Subject: [PATCH] use action --- .github/workflows/test-gpu.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-gpu.yml b/.github/workflows/test-gpu.yml index 0b9961003..8cdc4a8f3 100644 --- a/.github/workflows/test-gpu.yml +++ b/.github/workflows/test-gpu.yml @@ -57,11 +57,13 @@ jobs: python-version: "3.x" cache: "pip" - - name: Install UV - run: pip install uv - - - name: Install AnnData - run: uv pip install -e ".[dev,test, gpu_cu12]" + - name: Setup UV + uses: hynek/setup-cached-uv@v2 + with: + cache-dependency-path: pyproject.toml + + - name: Install AnnData + run: uv pip install -e .[dev,test,gpu_cu12] - name: Env list run: pip list