Skip to content

更新示例 README.md,添加天气服务器和客户端的详细信息;新增 MCP 兼容的天气服务器和客户端示例 #11

更新示例 README.md,添加天气服务器和客户端的详细信息;新增 MCP 兼容的天气服务器和客户端示例

更新示例 README.md,添加天气服务器和客户端的详细信息;新增 MCP 兼容的天气服务器和客户端示例 #11

Workflow file for this run

name: sdk-ci
on:
pull_request:
push:
branches:
- main
- "codex/**"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev,openai,mcp]"
- name: Ruff
run: python -m ruff check src tests examples tools
- name: Pytest
env:
PYTEST_DISABLE_PLUGIN_AUTOLOAD: "1"
run: python -m pytest -q