-
Notifications
You must be signed in to change notification settings - Fork 0
GitHub Actions CI CD
ADEPT uses GitHub Actions for continuous integration, documentation deployment, and security scanning. All workflows run in containerized environments using the project's agentic-framework-deps-base image for reproducibility.
| Workflow | File | Trigger | Purpose |
|---|---|---|---|
| Lint and Test | lint-and-test.yml |
Push, PR to main | Code quality, unit tests, Docker builds |
| CI | ci.yml |
Push, PR to main | Coverage reporting |
| Deploy Docs | deploy-docs.yml |
Push to main (docs path) | Build and publish GitHub Pages |
| ASOPB Pre-Release Scan | asopb-pre-release-scan.yml |
PR to main, manual | Security and content safety |
| Build and Push | build-and-push.yml |
Release tag | Container image publishing |
| Deploy AWS | deploy-aws.yml |
Manual | EKS Helm deployment |
| Deploy Azure | deploy-azure.yml |
Manual | AKS Helm deployment |
| Deploy GCP | deploy-gcp.yml |
Manual | GKE Helm deployment |
| Infrastructure Test | test-infrastructure.yml |
Push (infra paths) | IaC validation |
The deploy-docs.yml workflow builds the MkDocs Material site and publishes to GitHub Pages:
- Checkout repository
- Install Python dependencies from
docs/public-site/requirements.txt - Content safety validation -- scans for internal hostnames, IPs, or sensitive paths
- Build with
mkdocs build --strict - Deploy to
gh-pagesbranch
Content Safety Gate: The documentation pipeline includes an automated scan that rejects any content containing internal network addresses or hostnames. This gate runs before the build step and will fail the workflow if sensitive content is detected.
| Tier | Job | Blocking | Tools |
|---|---|---|---|
| Static Analysis | lint |
Yes | Black, isort, Ruff, Vulture |
| Type Checking | type-check |
Yes | mypy |
| Unit Tests | unit-tests |
Yes | pytest + coverage |
| Docker Builds | docker-build |
Yes | Matrix across 6 services |
| E2E Tests | e2e-tests |
Yes | pytest (critical paths) |
| Security | security-scan |
No | Trivy (SARIF upload) |
| SCA | dependency-check |
No | pip-audit, safety |
The ASOPB workflow runs a multi-pass security and content safety scan on release candidates:
Phase 1 (Blocking): Regex-based SAST scan for secrets and sensitive patterns.
Phase 2 (Parallel): Full pipeline using the adept-release-scanner container:
- Secrets detection (TruffleHog, detect-secrets)
- SCA vulnerability scanning (Grype)
- NER/PII detection (BERT models)
- Toxicity classification
- LLM adversarial red-teaming (Promptfoo)
Results are aggregated into an ASPI (Agentic Security Posture Index) score. A minimum threshold must be met for release approval.
When adding or modifying workflows:
- Test locally with act where possible
- Use the
agentic-framework-deps-baseimage for Python-based jobs - Pin action versions to full SHA for supply-chain security
- Mark advisory checks with
continue-on-error: true - Add new blocking jobs to the
ci-statusneeds list
Getting Started
Architecture
- Overview
- MCP Tool System
- Slurm HPC Integration
- Multi-Agent Orchestration
- A2A Federation
- Security Model
Deployment
User Guides
Developer Tools
CI/CD
Testing
Contributing
Reference