Skip to content

Rendering route_color when it is available #79

Rendering route_color when it is available

Rendering route_color when it is available #79

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches: [main]
jobs:
Test:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
run: python -m pip install uv
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: uv sync
# - name: Type-check with Pyright
# run: poetry run pyright .
- name: Lint with ruff
run: uv run ruff check --output-format=github .
- name: Format with ruff
run: uv run ruff format . --check --diff