Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,29 @@ jobs:

- name: Run tests
run: uv run pytest tests/ -v --cov=src/clgraph --cov-report=term-missing

notebooks:
name: Example Notebooks
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install Graphviz
run: sudo apt-get update && sudo apt-get install -y graphviz

- name: Install uv
run: pip install uv

- name: Install dependencies
run: |
uv sync
uv pip install -e ".[dev]"

- name: Run example notebooks (skip LLM)
run: uv run python run_all_notebooks.py --skip-llm
Loading
Loading