Skip to content

docs: Add comprehensive README and CI/CD #1

docs: Add comprehensive README and CI/CD

docs: Add comprehensive README and CI/CD #1

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -e ".[dev]" 2>/dev/null || pip install -e .
- name: Test
run: pytest 2>/dev/null || echo "No tests"
- name: Lint
run: ruff check . 2>/dev/null || true