feat: implement autonomous vibecoding, file patcher, and security gua… #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: CXM CI/CD | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r meta-orchestrator/requirements.txt | |
| pip install -r meta-orchestrator/requirements-dev.txt | |
| pip install -e ./meta-orchestrator | |
| - name: Security Audit (pip-audit) | |
| run: | | |
| pip-audit -r meta-orchestrator/requirements.txt | |
| - name: Type Checking (mypy) | |
| run: | | |
| mypy meta-orchestrator/src/cxm --ignore-missing-imports | |
| - name: Linting (ruff) | |
| run: | | |
| ruff check meta-orchestrator/src/cxm | |
| - name: Run Tests (pytest) | |
| env: | |
| PYTHONPATH: meta-orchestrator/src | |
| run: | | |
| pytest meta-orchestrator/tests/ |