From 022f19a72c8f7c415f22b16ad63e6d23b723d33c Mon Sep 17 00:00:00 2001 From: Omar-268 Date: Thu, 16 Oct 2025 15:42:22 +0000 Subject: [PATCH] Update .github/workflows/main.yaml --- .github/workflows/main.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index c69efdf..70d71c1 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -22,7 +22,17 @@ jobs: run: | pip install pytest pip install pylint + pip install bandit pip install -r requirements.txt + + - name: Run Bandit (Static Security Analysis) + run: bandit -r . -f txt -o bandit-report.txt + + - name: Upload Bandit Report (Artifact) + uses: actions/upload-artifact@v4 + with: + name: bandit-report + path: bandit-report.txt - name: Run pylint run: pylint .