name: CI on: pull_request: branches: - main env: FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true jobs: test: name: Tests & type-check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.14" - name: Install dependencies run: pip install -e ".[dev]" - name: Run tests run: pytest - name: Run mypy run: mypy muse/ - name: Run typing audit (ratchet = 0) run: python tools/typing_audit.py --dirs muse/ tests/ --max-any 0