Skip to content

Commit 5098e48

Browse files
committed
streamline with uv
1 parent afef7fb commit 5098e48

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -324,24 +324,24 @@ jobs:
324324
commit_message: 'Deploy reports for ${{ github.ref_name }} (${{ github.sha }})'
325325

326326
pytest_matrix:
327+
327328
runs-on: ${{ matrix.os }}
329+
328330
strategy:
329331
matrix:
330332
os: [macos-latest, ubuntu-latest, windows-latest]
331333
python-version: ["3.11", "3.12"]
334+
332335
steps:
336+
333337
- name: Checkout code
334338
uses: actions/checkout@v4
335339

336-
- name: Set up Python ${{ matrix.python-version }}
337-
uses: actions/setup-python@v5
338-
with:
339-
python-version: ${{ matrix.python-version }}
340-
341340
- name: Install uv
342341
uses: astral-sh/setup-uv@v1
343342
with:
344343
enable-cache: true
344+
python-version: ${{ matrix.python-version }}
345345

346346
- name: Install dependencies
347347
run: |
@@ -350,4 +350,4 @@ jobs:
350350
351351
- name: Run tests
352352
run: |
353-
pytest -v
353+
uv run pytest -v

0 commit comments

Comments
 (0)