Skip to content

Commit 6424091

Browse files
committed
ci: add GitHub Actions workflow
1 parent 150ad12 commit 6424091

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- uses: astral-sh/setup-uv@v5
15+
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: "3.12"
19+
20+
- name: Install dependencies
21+
run: uv sync --all-extras
22+
23+
- name: Lint
24+
run: make lint
25+
26+
- name: Format check
27+
run: make format-check
28+
29+
- name: Type check
30+
run: make typecheck
31+
32+
- name: Test
33+
run: make test

0 commit comments

Comments
 (0)