Skip to content

Add downloads badge to README #11

Add downloads badge to README

Add downloads badge to README #11

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install pytest pytest-asyncio mypy structlog pydantic msgpack black ruff
- name: Install package (editable)
run: |
pip install -e .
- name: Run mypy strict check
run: |
mypy --strict src/
- name: Run test suite
run: |
python -m pytest tests/ -v