Skip to content

docs: update roadmap with Phase 1/2 progress and smoke test feature #3

docs: update roadmap with Phase 1/2 progress and smoke test feature

docs: update roadmap with Phase 1/2 progress and smoke test feature #3

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
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.11"
cache: pip
- name: Install package (dev)
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Smoke checks
run: |
python -m forgelm.cli --help
python -c "from forgelm.config import load_config; load_config('config_template.yaml'); print('config ok')"
- name: Ruff
run: |
ruff --version
# Keep CI strict but low-noise: catch syntax/undefined-name class issues.
ruff check . --select F,E9
- name: Pytest
run: |
pytest -q