feat: Add Bandit security checks to CI workflows

This commit is contained in:
2025-11-12 11:43:57 +01:00
parent 5d6592d657
commit 2214bbe64f
2 changed files with 4 additions and 1 deletions

View File

@@ -50,6 +50,9 @@ jobs:
- name: Run Black - name: Run Black
run: black --check . run: black --check .
- name: Run bandit
run: bandit --ini .\.bandit -c pyproject.toml .
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: lint needs: lint

View File

@@ -57,7 +57,7 @@ jobs:
run: black --check . run: black --check .
- name: Run Bandit - name: Run Bandit
run: bandit -r . -c pyproject.toml run: bandit --ini .\.bandit -c pyproject.toml .
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest