Skip to content

chore: tag v0.3.0 changelog for unified client parity and MCP server #7

chore: tag v0.3.0 changelog for unified client parity and MCP server

chore: tag v0.3.0 changelog for unified client parity and MCP server #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run tests
run: pytest -q
- name: Run mypy
run: mypy -p hypercore_sdk
- name: Build package
run: python -m build
- name: Check package metadata
run: python -m twine check dist/*