Skip to content

Commit b545d67

Browse files
committed
Add dev branch to CI triggers, add PyMySQL for test deps, add CI badge
- CI now triggers on push/PR to main, dev, and develop branches - Add PyMySQL to requirements-test.txt so health tests can resolve MySQL dialect - Add CI status badge to README (linked to dev branch) - Update Python version badge from 3.8+ to 3.11+ https://claude.ai/code/session_01JeHvukSTgbNUdCmrpybjZm
1 parent dcd8962 commit b545d67

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [main, develop]
5+
branches: [main, dev, develop]
66
pull_request:
7-
branches: [main, develop]
7+
branches: [main, dev, develop]
88

99
jobs:
1010
lint:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
# DocBrain - Self-Hosted RAG Framework
44

5-
![Python Version](https://img.shields.io/badge/python-3.8%2B-blue)
5+
[![CI](https://github.com/shivama205/DocBrain/actions/workflows/ci.yml/badge.svg?branch=dev)](https://github.com/shivama205/DocBrain/actions/workflows/ci.yml)
6+
![Python Version](https://img.shields.io/badge/python-3.11%2B-blue)
67
![License](https://img.shields.io/badge/license-MIT-green)
78
![Security](https://img.shields.io/badge/security-self--hosted-brightgreen)
89

requirements-test.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ starlette>=0.45.0
99

1010
# Database
1111
SQLAlchemy>=2.0.25
12+
PyMySQL>=1.1.0
1213

1314
# Auth & security
1415
python-jose[cryptography]>=3.3.0

0 commit comments

Comments
 (0)