Skip to content
This repository was archived by the owner on Jun 18, 2026. It is now read-only.

bump mcp version

bump mcp version #41

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: |
uv pip install build hatchling
uv pip install -e ".[dev]"
- name: Run linting
run: |
uv run black --check src tests
uv run ruff check src tests
- name: Run tests
run: uv run pytest --cov=mcp_paradex --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: false