Skip to content

RFC: Plugin Extension System — runtime intelligence, hosted MCP, and plugin ecosystem #3

RFC: Plugin Extension System — runtime intelligence, hosted MCP, and plugin ecosystem

RFC: Plugin Extension System — runtime intelligence, hosted MCP, and plugin ecosystem #3

Workflow file for this run

name: Build Test
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "30 18 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install .[dev]
- name: Build package
run: python -m build
- name: Run Unit and Integration Tests
run: |
chmod +x tests/run_tests.sh
./tests/run_tests.sh fast