Skip to content

Commit 725c5df

Browse files
Anyeshclaude
andcommitted
ci: add GitHub Actions test workflow
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 349be4f commit 725c5df

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: test
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+
15+
- uses: astral-sh/setup-uv@v4
16+
with:
17+
version: "latest"
18+
19+
- run: uv sync --dev
20+
21+
- run: uv run pytest tests/ -v

0 commit comments

Comments
 (0)