Skip to content

Add fib context overlay to review charts #52

Add fib context overlay to review charts

Add fib context overlay to review charts #52

Workflow file for this run

name: CI
on:
push:
branches: [main, "feature/**"]
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: Sync dependencies
run: uv sync --extra dev
- name: Ruff lint
run: uv run ruff check src tests
- name: Ruff format
run: uv run ruff format --check src tests
- name: Pytest (with coverage gate)
run: uv run pytest -q