Skip to content

Commit ef254ea

Browse files
committed
ci: drop setup-uv cache (no uv.lock to key off)
1 parent ab6dd02 commit ef254ea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/integration.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ jobs:
2222
- uses: actions/checkout@v4
2323

2424
- name: Install uv
25+
# No cache (no uv.lock to key off — see test.yml comment).
2526
uses: astral-sh/setup-uv@v3
26-
with:
27-
enable-cache: true
2827

2928
- name: Set up Python 3.12
3029
# basic-memory itself requires 3.12+; the bm install needs that.

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
- uses: actions/checkout@v4
2828

2929
- name: Install uv
30+
# No `enable-cache: true` — the action's default cache key globs for
31+
# `uv.lock`, which we don't ship (we use `uv run --with` instead of
32+
# `uv sync`). Without a lock file the cache step errors out.
3033
uses: astral-sh/setup-uv@v3
31-
with:
32-
enable-cache: true
3334

3435
- name: Set up Python ${{ matrix.python-version }}
3536
run: uv python install ${{ matrix.python-version }}

0 commit comments

Comments
 (0)