Skip to content

support Python 3.10 (do not merge) #85

support Python 3.10 (do not merge)

support Python 3.10 (do not merge) #85

Workflow file for this run

name: finegrain CI
on:
push:
paths:
- finegrain/**
- .github/workflows/finegrain-ci.yml
jobs:
lint_and_typecheck:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./finegrain
steps:
- name: checkout
uses: actions/checkout@v4
- name: install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-suffix: "finegrain-python"
cache-dependency-glob: "**/finegrain/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