Skip to content

Commit 9c52f40

Browse files
committed
Update CI to run make check+test via uvx
1 parent 6b8f064 commit 9c52f40

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,14 @@ jobs:
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
allow-prereleases: true
31+
- name: Set up uv
32+
uses: astral-sh/setup-uv@v3
33+
with:
34+
enable-cache: true
35+
- name: Install make (Windows)
36+
if: runner.os == 'Windows'
37+
run: choco install make -y
38+
- name: Check
39+
run: make check
3140
- name: Test
32-
run: python -m unittest discover
41+
run: make test

0 commit comments

Comments
 (0)