Skip to content

Live API healthcheck and test updates #348

Live API healthcheck and test updates

Live API healthcheck and test updates #348

Workflow file for this run

name: Typing
on:
push:
branches: ["master"]
paths:
- ".github/workflows/typing.yml"
- "**.py"
- "uv.lock"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/typing.yml"
- "**.py"
- "uv.lock"
- "pyproject.toml"
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make setup
- name: Typecheck
run: make typecheck