Skip to content

Bump mcp from 1.9.2 to 1.13.1 #134

Bump mcp from 1.9.2 to 1.13.1

Bump mcp from 1.9.2 to 1.13.1 #134

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master, develop ]
jobs:
cdm-mcp-server-tests:
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- python-version: "3.11.9"
steps:
- name: Repo checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
shell: bash
run: |
export UV_PROJECT_ENVIRONMENT="${pythonLocation}"
uv sync --locked
- name: Run tests
shell: bash
run: PYTHONPATH=. pytest --cov=src --cov-report=xml tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true