Skip to content

Commit 8c55ba4

Browse files
monperrusclaude
andcommitted
Add GitHub Actions CI (ruff, mypy, pytest)
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 5982a7f commit 8c55ba4

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+
branches: [main]
6+
pull_request:
7+
branches: [main]
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+
- run: pip install -e .[dev]
18+
- run: ruff check .
19+
- run: mypy .
20+
- run: pytest --cov=llmism --cov-report=term-missing

0 commit comments

Comments
 (0)