Skip to content

Update.mcp.json.example: autoApprove all MCP tools for full LLM and c… #18

Update.mcp.json.example: autoApprove all MCP tools for full LLM and c…

Update.mcp.json.example: autoApprove all MCP tools for full LLM and c… #18

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH=$PATH:$HOME/.cargo/bin
- name: Install dependencies
run: |
uv venv
source .venv/bin/activate
uv pip install -e ".[dev]"
- name: Lint with ruff
run: |
source .venv/bin/activate
ruff check .
- name: Type check with mypy
run: |
source .venv/bin/activate
mypy src/
- name: Test with pytest
run: |
source .venv/bin/activate
pytest