Skip to content

Bump version to 0.1.1 — direct Python API rewrite #2

Bump version to 0.1.1 — direct Python API rewrite

Bump version to 0.1.1 — direct Python API rewrite #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Run tests
run: |
uv run --python ${{ matrix.python-version }} --with langchain-core --with pytest --with pytest-cov \
python -m pytest tests/ -v --tb=short --cov=langchain_superlocalmemory --cov-report=term-missing
- name: Lint
run: |
uv run --python ${{ matrix.python-version }} --with ruff \
ruff check langchain_superlocalmemory/