We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88a3fe8 commit 27c6ad1Copy full SHA for 27c6ad1
1 file changed
.github/workflows/security_check.yml
@@ -0,0 +1,23 @@
1
+name: Security Scan (Bandit)
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ bandit:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout code
10
+ uses: actions/checkout@v4
11
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v4
14
+ with:
15
+ python-version: '3.9'
16
17
+ - name: Install Bandit
18
+ run: pip install bandit
19
20
+ - name: Run Bandit
21
+ # -r znamená rekurzívne (celý priečinok)
22
+ # -ll filtruje len stredne a vysoko rizikové chyby
23
+ run: bandit -r . -ll
0 commit comments