Add CI #23

Merged
A8065384 merged 3 commits from push-wyrrkmpvkkoz into main 2026-03-05 06:35:27 +00:00
Showing only changes of commit 670c00b1da - Show all commits

33
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install dependencies
run: uv sync --frozen
- name: Format check
run: uv run ruff format --check
- name: Lint
run: uv run ruff check
- name: Type check
run: uv run ty check
- name: Test
run: uv run pytest