Skip to content

Use MCP sampling API for LLM completions instead of requiring API keys #208

Use MCP sampling API for LLM completions instead of requiring API keys

Use MCP sampling API for LLM completions instead of requiring API keys #208

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.13', '3.14']
task: [check, test, format]
name: ${{ matrix.task }} (py ${{ matrix.python-version }})
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
set -euxo pipefail
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Run Task
run: |
case "${{ matrix.task }}" in
check) make clean check ;;
test) make clean test ;;
format) make clean format FLAGS=--check" ;;
esac