Skip to content

Phase 8: GitHub Actions CI (ruff + pytest) #1

Phase 8: GitHub Actions CI (ruff + pytest)

Phase 8: GitHub Actions CI (ruff + pytest) #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint (ruff)
run: ruff check .
# Tests are fully mocked — no ANTHROPIC_API_KEY or TAVILY_API_KEY needed.
- name: Test (pytest)
run: pytest -q