Skip to content

Add three headline demos and DEMO.md #25

Add three headline demos and DEMO.md

Add three headline demos and DEMO.md #25

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
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: Install package
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run tests with coverage
run: pytest --cov=agentmint --cov-report=term-missing