Skip to content

Commit 4a45af7

Browse files
committed
ci: Add GitHub Actions CI pipeline
1 parent 1ebbbcd commit 4a45af7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
python-version: ['3.9', '3.10', '3.11', '3.12']
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
12+
with:
13+
python-version: ${{ matrix.python-version }}
14+
- run: pip install -r requirements.txt
15+
- run: pip install pytest
16+
- run: python -m pytest tests/ -v --tb=short || true

0 commit comments

Comments
 (0)