Skip to content

Commit 89df89b

Browse files
Add CI configuration for linting and type checking
1 parent 9ccb137 commit 89df89b

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on: [ push, pull_request ]
3+
4+
jobs:
5+
lint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-python@v5
10+
with: { python-version: "3.14" }
11+
- run: uv sync
12+
- run: uv run ruff check .
13+
- run: uv run ruff format --check .
14+
- run: uv run mypy .

0 commit comments

Comments
 (0)