Skip to content

feat: add 07_agents.py update readme/agents.md #9

feat: add 07_agents.py update readme/agents.md

feat: add 07_agents.py update readme/agents.md #9

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.12, 3.14]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install project (editable) and test deps
run: |
python -m pip install -e .
python -m pip install pytest pytest-xdist
- name: Run tests (parallel if xdist available)
run: python -m pytest -n auto -q