From 913feca6a6b6fd30ca0af2154ce974034234c9b5 Mon Sep 17 00:00:00 2001 From: Safi Date: Mon, 4 May 2026 18:27:33 +0100 Subject: [PATCH] CI: add v5-v7 branches, workflow_dispatch trigger, sql extra --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd34b55e..4403a60a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,10 @@ name: CI on: push: - branches: ["v1", "v2", "v3", "v4", "main"] + branches: ["v1", "v2", "v3", "v4", "v5", "v6", "v7", "main"] pull_request: - branches: ["v1", "v2", "v3", "v4", "main"] + branches: ["v1", "v2", "v3", "v4", "v5", "v6", "v7", "main"] + workflow_dispatch: jobs: test: @@ -23,7 +24,7 @@ jobs: - name: Install dependencies run: | - pip install -e ".[mcp,pdf,watch]" + pip install -e ".[mcp,pdf,watch,sql]" pip install pytest - name: Run tests