Skip to content

test: 도구 런타임 기능 검증 + MCP 배선 스모크 (#7) #22

test: 도구 런타임 기능 검증 + MCP 배선 스모크 (#7)

test: 도구 런타임 기능 검증 + MCP 배선 스모크 (#7) #22

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.11"
- name: Install deps
run: uv sync --extra dev
- name: Lint
run: uv run ruff check .
- name: Test
run: uv run pytest -q
- name: Catalog & changelog drift
run: |
uv run arcsolve-mcp catalog
uv run arcsolve-mcp changelog
git diff --exit-code docs/services.md CHANGELOG.md