Skip to content

chore: fix typing, formatting and tests #6

chore: fix typing, formatting and tests

chore: fix typing, formatting and tests #6

Workflow file for this run

name: Type Checking
on:
pull_request:
branches: [ main ]
jobs:
pyright:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install uv
run: pip install uv
- name: Create venv
run: uv venv
- name: Install dependencies
run: |
uv sync
- name: Run Pyright
run: uv run pyright