Skip to content

Commit ba38197

Browse files
committed
chore: remove cache from CI
1 parent 2001959 commit ba38197

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,10 @@ jobs:
2020
with:
2121
python-version: 3.13
2222

23-
- uses: actions/cache@v4
24-
id: cache
25-
with:
26-
path: ${{ env.pythonLocation }}
27-
key: ${{ runner.os }}-static-analysis-${{ hashFiles('pyproject.toml') }}-test-v03
2823
- uses: astral-sh/setup-uv@v6
29-
if: steps.cache.outputs.cache-hit != 'true'
3024
with:
3125
version: "latest"
3226
- name: Install Dependencies
33-
if: steps.cache.outputs.cache-hit != 'true'
3427
run: uv pip install --system ".[dev]"
3528

3629
- name: Run formatter
@@ -58,17 +51,10 @@ jobs:
5851
with:
5952
python-version: ${{ matrix.python-version }}
6053

61-
- uses: actions/cache@v4
62-
id: cache
63-
with:
64-
path: ${{ env.pythonLocation }}
65-
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-test-v03
6654
- uses: astral-sh/setup-uv@v6
67-
if: steps.cache.outputs.cache-hit != 'true'
6855
with:
6956
version: "latest"
7057
- name: Install Dependencies
71-
if: steps.cache.outputs.cache-hit != 'true'
7258
run: uv pip install --system ".[test]"
7359

7460
- run: mkdir coverage

0 commit comments

Comments
 (0)