Skip to content

Add aexp install --dev for live editable-install MCP development #15

Add aexp install --dev for live editable-install MCP development

Add aexp install --dev for live editable-install MCP development #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install project
run: poetry install --with dev --extras "wandb mcp"
- name: Ruff
run: poetry run ruff check .
- name: Pytest
run: poetry run pytest