Skip to content

Minimum change to SubRouter so get, post etc have same signature as Robyn #905

Minimum change to SubRouter so get, post etc have same signature as Robyn

Minimum change to SubRouter so get, post etc have same signature as Robyn #905

Workflow file for this run

name: Lint PR
on:
pull_request:
branches: [main]
env:
UV_SYSTEM_PYTHON: 1
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies with uv
run: |
uv pip install ruff isort black
- name: Run linters
run: |
uv run ruff check .
uv run isort --check-only --diff .