From 44366f96f1df0afab7415de80a9e984ebb116ff1 Mon Sep 17 00:00:00 2001 From: tanyar09 Date: Fri, 6 Mar 2026 13:30:24 -0500 Subject: [PATCH 1/2] 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: | -- 2.49.1 From a947ffd149a85104aaa3525cb8770a4dcc5a7745 Mon Sep 17 00:00:00 2001 From: tanyar09 Date: Fri, 6 Mar 2026 14:01:20 -0500 Subject: [PATCH 2/2] Fix CI workflow: trigger on all PRs and feature branches --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1d48341..b789287 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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: -- 2.49.1