Skip to content

Declare 3.14 target for pyright #28

Declare 3.14 target for pyright

Declare 3.14 target for pyright #28

Workflow file for this run

name: Type Check
on:
push:
branches: [ main ]
paths:
- 'debugwand/**'
- 'tests/**'
- 'pyproject.toml'
- '.github/workflows/typecheck.yml'
pull_request:
branches: [ main ]
paths:
- 'debugwand/**'
- 'tests/**'
- 'pyproject.toml'
- '.github/workflows/typecheck.yml'
jobs:
pyright:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: uv sync --all-groups
- name: Run Pyright
run: uv run pyright