Skip to content

feat: add self-reflection step before presenting roadmap #13

feat: add self-reflection step before presenting roadmap

feat: add self-reflection step before presenting roadmap #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
# Required by pydantic-settings at import time (tests mock actual API calls)
GITHUB_TOKEN: test-token
REVIEW_ROADMAP_MODEL_NAME: test-model
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Install dependencies
run: pip install .
- name: Run tests
run: pytest -v