Skip to content

Update README to include CI details for GitHub Actions, specifying Py… #1

Update README to include CI details for GitHub Actions, specifying Py…

Update README to include CI details for GitHub Actions, specifying Py… #1

Workflow file for this run

# DocuMind — continuous integration (no secrets; no Ollama/Chroma I/O in tests).
name: CI
on:
push:
branches: [main, master]
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt ruff
- name: Ruff (critical rules)
run: ruff check app tests --select=E9,F63,F7,F82
- name: Pytest
run: pytest -q