feat(add docs):

This commit is contained in:
Alexander Myasoedov
2025-01-15 11:32:11 +02:00
parent 70c18c8251
commit bc030f06a8
69 changed files with 12674 additions and 12 deletions
+37
View File
@@ -0,0 +1,37 @@
# CI/CD Integration
Integrate Agentic Security into your CI/CD pipeline to automate security scans.
## GitHub Actions
Use the provided GitHub Action workflow to perform automated scans:
```yaml
name: Security Scan
on: [push, pull_request]
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: pip install agentic_security
- name: Run security scan
run: agentic_security ci
```
## Custom CI/CD Pipelines
For custom pipelines, ensure the following steps:
1. Install dependencies.
2. Run the `agentic_security ci` command.
## Further Reading
For more details on CI/CD integration, refer to the [API Reference](api_reference.md).