SecureFlow-CI-CD demonstrates a CI/CD pipeline using GitHub Actions to perform security checks and analyses on a Python project. The workflow steps include:
- Linting (flake8).
- Unit Testing (pytest).
- Security Analysis (CodeQL for vulnerability detection).
- Security Scanning (Bandit, intentionally configured to fail).
The project contains a small Streamlit application (bg_remove.py
) for image background removal, accompanied by example tests in tests/test_bg_remove.py
.
Note: The Bandit Scan intentionally fails due to purposely included insecure patterns (such as the use of
assert
). This demonstrates how the pipeline handles security failures.
To use or test SecureFlow-CI-CD, install the following tools:
To run the Streamlit application locally, install the dependencies listed in requirements.txt
.
- Fork this repository to your GitHub.
- Enable GitHub Actions on your fork (Actions → Enable workflows, if necessary).
- Edit or push to the
main
branch to trigger the workflow (.github/workflows/ci-cd.yml
). - Check the results in the repository's Actions tab.
- Lint (
flake8
) – Checksbg_remove.py
. If there are errors, the step will fail. - Tests (
pytest
) – Runs the tests intests/
. If there are failures, the job will fail. - CodeQL – Analyzes the code for vulnerabilities. Alerts appear in the Security tab.
- Bandit Scan – Scans the code for security issues (
bandit -r .
). This job intentionally fails due to insecure patterns included in the code.
The workflow will succeed in all steps except for the Bandit Scan, which will demonstrate security issues.
- bg_remove.py – Streamlit application for image background removal (
rembg
,Pillow
). - tests/test_bg_remove.py – Example tests using
pytest
. - requirements.txt – Lists the project dependencies.
- .github/workflows/ci-cd.yml – CI/CD pipeline configuration.
- Online Demo – Access the application at RemoveBG Streamlit.
The code contains intentional vulnerabilities for Bandit to detect and demonstrate how the workflow handles security failures. The pipeline is structured to pass Lint, Tests, and CodeQL checks but fail the Bandit Scan.
Feel free to fork, open issues, or submit pull requests. The project was developed to demonstrate secure practices in CI/CD and automated security analysis.