Skip to content

Commit a224726

Browse files
committed
Add GitHub Actions CI workflow
Runs pytest on every push and pull request using Python 3.11. https://claude.ai/code/session_01VQfqug9MDEyRFydkmES4n2
1 parent 4db376b commit a224726

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: "3.11"
16+
cache: pip
17+
18+
- run: pip install -r requirements.txt
19+
20+
- run: pytest tests/ -v

0 commit comments

Comments
 (0)