Skip to content

test: add search, memory, and admin HTTP integration tests; update RE… #33

test: add search, memory, and admin HTTP integration tests; update RE…

test: add search, memory, and admin HTTP integration tests; update RE… #33

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- run: pip install -e ".[dev]"
- run: ruff check .
- run: mypy
- name: Syntax-check examples
run: python -m py_compile examples/basic_usage.py && python -m py_compile examples/query_usage.py && python -m py_compile examples/schema_registry.py && echo "All examples compile"
- run: pytest tests/