Files
Leopold 2672bd86e6
tests / pytest (push) Has been cancelled
test: add pytest suite + CI workflow (21 tests)
2026-07-06 07:05:17 +02:00

17 lines
380 B
YAML

name: tests
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install package + test dependencies
run: pip install -e ./agent_platform pytest pytest-asyncio httpx
- name: Run pytest
run: pytest