fix: remove unsupported kwargs from questionary.checkbox call #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Fast Gate | |
| on: | |
| push: | |
| branches: [dev, main] | |
| pull_request: | |
| branches: [dev, main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| fast-gate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Sync dependencies | |
| run: uv sync --all-groups --locked | |
| - name: Lint | |
| run: uv run ruff check mind tests | |
| - name: Prompt smoke and guardrails | |
| run: uv run pytest -q tests/test_ci_fast_gate.py | |
| - name: Unit tests | |
| run: uv run pytest -q tests/test_snapshot.py tests/test_claude_code_adapter.py tests/test_codex_adapter.py tests/test_handoff.py |