Skip to content

extend edit_mode to more config classes #21

extend edit_mode to more config classes

extend edit_mode to more config classes #21

Workflow file for this run

name: Python Linting and Type Checking
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run Ruff check
run: uv run ruff check . --output-format=github
- name: Run Ty check
run: uv run ty check .