Skip to content

chore: v0.9.0 release prep — version bump, docs, release workflow #63

chore: v0.9.0 release prep — version bump, docs, release workflow

chore: v0.9.0 release prep — version bump, docs, release workflow #63

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
with:
python-version: "3.12"
- name: Install dependencies
run: uv sync --all-extras --frozen
- name: Lint
run: uv run ruff check .
- name: Format check
run: uv run ruff format --check .
- name: Type check
run: uv run mypy kardscm/
- name: Test
run: uv run pytest