Skip to content

feat(autopilot): scaffold JetBrains plugin #112

feat(autopilot): scaffold JetBrains plugin

feat(autopilot): scaffold JetBrains plugin #112

Workflow file for this run

# Full matrix + full test suite on main. PRs use koru-ci.yml (fast smoke).
name: CI
on:
push:
branches: ["main"]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
pyproject.toml
uv.lock
- name: Install package + dev deps
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Ruff
run: python -m ruff check src tests
- name: Pytest
run: python -m pytest tests/ -q