Skip to content

Commit 6f70ecf

Browse files
committed
Fix cache
1 parent c263db9 commit 6f70ecf

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,15 @@ jobs:
4040
- uses: actions/checkout@v4
4141
- name: install Just
4242
uses: taiki-e/install-action@just
43-
- name: Install uv
44-
run: curl -LsSf https://astral.sh/uv/install.sh | sh
4543
- name: Set up Python
4644
uses: actions/setup-python@v5
4745
with:
4846
python-version: ${{ env.PYTHON_VERSION }}
49-
- name: Restore uv cache
50-
uses: actions/cache@v4
51-
with:
52-
path: ${{ env.UV_CACHE_DIR }}
53-
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
54-
restore-keys: |
55-
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
56-
uv-${{ runner.os }}
47+
cache: "pip"
5748
- name: Install Dependencies
5849
run: just install
5950
- name: mypy check
6051
run: just mypy
61-
- name: Minimize uv cache
62-
run: uv cache prune --ci
6352
test:
6453
strategy:
6554
fail-fast: false

0 commit comments

Comments
 (0)