Skip to content

Commit d7d044f

Browse files
committed
Add CI workflow
1 parent 64fe551 commit d7d044f

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
python-version: ["3.10", "3.11", "3.12"]
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
- name: Install
19+
run: |
20+
python -m pip install -U pip
21+
python -m pip install -e .[dev]
22+
- name: Test
23+
run: pytest -q

0 commit comments

Comments
 (0)