Skip to content

Refine annotation recipe & added custom routing #67

Refine annotation recipe & added custom routing

Refine annotation recipe & added custom routing #67

Workflow file for this run

name: Run Ruff Linter + Formatter Checks
on:
# Run on pull requests to develop or main
pull_request:
branches: [develop, main]
# Allow running manually
workflow_dispatch:
jobs:
ruff-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install package with dependencies
run: uv sync --extra dev
- name: Check Ruff Linter finds no issues
run: uv run ruff check
- name: Check Ruff Formatter identifies no changes
run: uv run ruff format --check