Skip to content

Commit b0c626c

Browse files
committed
ci: run pytest on push and pull request
1 parent eeeb567 commit b0c626c

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+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Install uv
14+
uses: astral-sh/setup-uv@v3
15+
- name: Set up Python
16+
run: uv python install 3.12
17+
- name: Install dependencies
18+
run: uv sync --group dev --group eval
19+
- name: Run tests
20+
run: uv run pytest -v

0 commit comments

Comments
 (0)