Files
agentic-codebase-memory-man…/.gitea/workflows/ci.yml

19 lines
310 B
YAML

name: CI
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
run: |
python3 --version
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v