Skip to content

Commit 3182c45

Browse files
committed
add core tests
1 parent d2ac9c1 commit 3182c45

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,29 @@ jobs:
2424

2525
- name: Check code formatting with ruff
2626
run: uv run ruff format --check .
27+
28+
test-core:
29+
runs-on: ubuntu-latest
30+
strategy:
31+
fail-fast: false
32+
matrix:
33+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
34+
steps:
35+
- uses: actions/checkout@v6
36+
37+
- name: Install uv
38+
uses: astral-sh/setup-uv@v7
39+
with:
40+
python-version: ${{ matrix.python-version }}
41+
42+
- name: Install dependencies
43+
run: uv sync --extra dev_core
44+
45+
- name: List installed packages
46+
run: |
47+
uv pip list
48+
uv run python --version
49+
50+
- name: Test core
51+
run: uv run pytest tests/test_core
52+
timeout-minutes: 20

0 commit comments

Comments
 (0)