Skip to content

feat: add PoC of stateless HTTP transport #61

feat: add PoC of stateless HTTP transport

feat: add PoC of stateless HTTP transport #61

Workflow file for this run

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 }}