Skip to content

Add minimal CI workflow for reliable baseline checks. #1

Add minimal CI workflow for reliable baseline checks.

Add minimal CI workflow for reliable baseline checks. #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
basic-check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Setup Python
run: uv python install
- name: Install dependencies
run: uv sync --dev
- name: Verify CLI starts
run: uv run python -m mcp_feedback_enhanced --help
- name: Run stable unit test
run: uv run pytest -q tests/unit/test_port_manager.py