Skip to content

Initial implementation of RagLite SQLite toolkit #1

Initial implementation of RagLite SQLite toolkit

Initial implementation of RagLite SQLite toolkit #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Lint
run: |
ruff check .
black --check .
- name: Type check
run: mypy raglite_sqlite
- name: Test
run: pytest --cov=raglite_sqlite