Skip to content

Developer experience: CLI, privacy heartbeat, design partners, contribution model #13

Developer experience: CLI, privacy heartbeat, design partners, contribution model

Developer experience: CLI, privacy heartbeat, design partners, contribution model #13

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