Skip to content

initial commit

initial commit #2

Workflow file for this run

name: CI
on: push
jobs:
lint_and_typecheck:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-suffix: "finegrain-toolbox"
cache-dependency-glob: "**/uv.lock"
- name: uv sync
run: uv sync --frozen --all-extras --dev
- name: format
run: uv run ruff format
- name: lint
run: uv run ruff check
- name: typecheck
run: uv run pyright