Skip to content

Claude/refine local demo flow 35rbjc #23

Claude/refine local demo flow 35rbjc

Claude/refine local demo flow 35rbjc #23

Workflow file for this run

name: Typecheck
on:
push:
pull_request:
jobs:
mypy:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run mypy
run: mypy --strict agentmint/ || true