Skip to content

Commit 969e90d

Browse files
committed
CI workflow for tests
1 parent 85c033f commit 969e90d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
python-version: ["3.12", "3.13"]
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
with:
19+
lfs: true
20+
21+
- name: Set up uv and Python
22+
uses: astral-sh/setup-uv@v4
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
26+
- name: Show Python and uv versions
27+
run: |
28+
python -V
29+
uv --version
30+
31+
- name: Run test suite
32+
run: uv run pytest -q

0 commit comments

Comments
 (0)