docs: update roadmap with Phase 1/2 progress and smoke test feature #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |