File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments