Skip to content

Add testing workflow and dependencies #26

Add testing workflow and dependencies

Add testing workflow and dependencies #26

Workflow file for this run

name: Type Check
on: [pull_request]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Run type checking with ty
run: uv run --all-extras ty check