Skip to content

Run tests on latest and lowest typing-extensions #13

Run tests on latest and lowest typing-extensions

Run tests on latest and lowest typing-extensions #13

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: '3.13'
- name: Install dependencies
run: uv sync --group lint
- name: Run Ruff formatter
run: make format-diff
- name: Run Ruff linter
run: make lint-github
- name: Run Pyright
run: make typecheck
- name: Run pre-commit
uses: [email protected]
with:
extra_args: --all-files --verbose