feat: add PoC of stateless HTTP transport #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cloud tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
uv-example: | |
name: python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
# Install a specific version of uv. | |
version: "0.5.13" | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: "pyproject.toml" | |
- name: Install the project | |
run: uv sync --all-extras --all-groups | |
- name: Run ruff | |
run: uv run ruff check . | |
- name: Run tests | |
run: uv run pytest tests --cloud | |
env: | |
# E.g. https://mcptests.grafana-dev.net. | |
GRAFANA_URL: ${{ vars.CLOUD_GRAFANA_URL }} | |
GRAFANA_API_KEY: ${{ secrets.CLOUD_GRAFANA_API_KEY }} |