Skip to content

Commit 499dbf3

Browse files
committed
in pytest_matrix, use uv instead of pip
1 parent 06e8c27 commit 499dbf3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,14 @@ jobs:
335335
uses: actions/setup-python@v5
336336
with:
337337
python-version: ${{ matrix.python-version }}
338-
cache: "pip"
338+
339+
- name: Install uv
340+
uses: astral-sh/setup-uv@v1
341+
with:
342+
enable-cache: true
339343

340344
- name: Install dependencies
341-
run: |
342-
python -m pip install --upgrade pip
343-
pip install .[dev]
345+
run: uv pip install .[dev]
344346

345347
- name: Run tests
346348
run: |

0 commit comments

Comments
 (0)