Skip to content

feat: add Cursor Composer subscription passthrough via cursor-agent CLI #31

feat: add Cursor Composer subscription passthrough via cursor-agent CLI

feat: add Cursor Composer subscription passthrough via cursor-agent CLI #31

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: pytest (${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package + dev extras
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Compile check
run: python -m compileall codex_shim/ -q
- name: Run tests
run: python -m pytest tests/ -q