Skip to content

Reorganized materials, added infographic, and added troubleshooting documentation #68

Reorganized materials, added infographic, and added troubleshooting documentation

Reorganized materials, added infographic, and added troubleshooting documentation #68

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install 'ruff>=0.15,<0.16'
- name: Ruff check
run: ruff check agent_memory_toolkit/ tests/
- name: Ruff format check
run: ruff format --check agent_memory_toolkit/ tests/
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package with dev dependencies
run: pip install -e ".[dev]"
- name: Run unit tests with coverage
run: pytest tests/unit/ --cov=agent_memory_toolkit --cov-report=xml --cov-report=term-missing -v
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report-${{ matrix.python-version }}
path: coverage.xml