Skip to content

removal of outdated vector endpoints #16

removal of outdated vector endpoints

removal of outdated vector endpoints #16

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: |
uv pip install --system -e .
uv pip install --system pytest pytest-asyncio pytest-cov
- name: Run linting
run: |
uv pip install --system ruff
ruff check src/
continue-on-error: true
- name: Run tests
run: |
pytest tests/ -v
continue-on-error: true # Since we need CZero Engine running
- name: Check examples syntax
run: |
python -m py_compile examples/*.py