Skip to content

Refactor API: explicit params, strict JSON-RPC validation, fix bugs #14

Refactor API: explicit params, strict JSON-RPC validation, fix bugs

Refactor API: explicit params, strict JSON-RPC validation, fix bugs #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package and test dependencies
run: |
pip install -e .
pip install pytest
- name: Run tests
run: python -m pytest tests/ -v -m "not integration"