feat: Add changelog, CLI for mission planning, and enhance impulse co… #2
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 Placeholder | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| traceability-and-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install deps (placeholder - add real requirements later) | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install numpy matplotlib | |
| - name: Run traceability checker | |
| run: | | |
| python traceability_check.py --fail-on-missing || true # Allow placeholder failures | |
| - name: Run tests (subset) | |
| run: | | |
| python -m pytest -k impulse_vnv || true |