Skip to content

Commit 5459fb5

Browse files
dbhaveryclaude
andcommitted
ci: add GitHub Actions CI pipeline
Runs pytest on push/PR to master. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent faee5a5 commit 5459fb5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.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+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
15+
with:
16+
python-version: "3.13"
17+
- name: Install package
18+
run: pip install -e ".[dev]"
19+
- name: Run tests
20+
run: pytest --tb=short -q

0 commit comments

Comments
 (0)