Skip to content

Impl ux imrpovment

Impl ux imrpovment #44

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
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python 3.14
run: uv python install 3.14
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Ruff Format
run: uv run ruff format --check .
- name: Ruff Lint
run: uv run ruff check .
- name: Ty
run: uv run ty check .
- name: Mypy
run: uv run mypy .
- name: Basedpyright
run: uv run basedpyright .
- name: Pytest
run: uv run pytest -v