Skip to content

feat: implement autonomous vibecoding, file patcher, and security gua… #2

feat: implement autonomous vibecoding, file patcher, and security gua…

feat: implement autonomous vibecoding, file patcher, and security gua… #2

Workflow file for this run

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/