Skip to content

Commit 55ac805

Browse files
committed
🚧 enable-cache: false, maybe?
1 parent d509f4f commit 55ac805

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,16 @@ jobs:
7979
- uses: astral-sh/setup-uv@bd01e18f51369d5a26f1651c3cb451d3417e3bba # v6.3.1
8080
with:
8181
python-version: "3.11"
82+
enable-cache: false
8283

8384
- name: (DEBUG) print numpy version # TODO
8485
run: >
85-
uv run --isolated --group=mypy --with="numpy==${{ matrix.numpy-version }}"
86+
uv run --group=mypy --with="numpy==${{ matrix.numpy-version }}"
8687
python -c "import numpy; print(numpy.__version__)"
8788
8889
- name: mypy
8990
run: >
90-
uv run --isolated --group=mypy --with="numpy==${{ matrix.numpy-version }}"
91+
uv run --group=mypy --with="numpy==${{ matrix.numpy-version }}"
9192
mypy --tb --no-incremental --cache-dir=/dev/null tests/integration/test_numpy.pyi
9293
9394
# TODO: (based)pyright

0 commit comments

Comments
 (0)