From 44366f96f1df0afab7415de80a9e984ebb116ff1 Mon Sep 17 00:00:00 2001 From: tanyar09 Date: Fri, 6 Mar 2026 13:30:24 -0500 Subject: [PATCH] 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 --- .gitea/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0b684ad..1d48341 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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: |