Compare commits

..

2 Commits

Author SHA1 Message Date
a947ffd149 Fix CI workflow: trigger on all PRs and feature branches
Some checks failed
CI / Lint with ruff (pull_request) Failing after 1m37s
CI / Test Python 3.11 (pull_request) Successful in 1m29s
CI / Test Python 3.12 (pull_request) Successful in 1m50s
CI / Build package (pull_request) Has been skipped
2026-03-06 14:01:20 -05:00
44366f96f1 Enhance CI workflow: add installation verification for key dependencies
- Include installation of nanobot with all dependencies and dev dependencies
- Add verification step to ensure key dependencies (pytest, ruff, pydantic, typer, litellm) are installed
2026-03-06 13:30:24 -05:00

View File

@ -2,9 +2,9 @@ name: CI
on:
push:
branches: [ main, master, develop ]
branches: [ main, master, develop, feature/** ]
pull_request:
branches: [ main, master, develop ]
# Trigger on all pull requests regardless of target branch
workflow_dispatch:
jobs:
@ -53,7 +53,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Install nanobot with all dependencies and dev dependencies
pip install -e ".[dev]"
# Verify key dependencies are installed
pip list | grep -E "(pytest|ruff|pydantic|typer|litellm)"
- name: Run tests
run: |