Skip to content

Commit

Permalink
ci: only cache on pypy
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed May 20, 2024
1 parent 01798fd commit 958fe0e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,13 @@ jobs:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- uses: hynek/setup-cached-uv@v1
- name: Setup uv (uncached)
uses: yezz123/setup-uv@v4
if: "!startsWith(matrix.python-version, 'pypy')"

- name: Setup uv (cached)
uses: hynek/setup-cached-uv@v1
if: "startsWith(matrix.python-version, 'pypy')"
with:
cache-suffix: -${{ matrix.python-version }}

Expand Down

0 comments on commit 958fe0e

Please sign in to comment.