We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7056b4 commit b2c4638Copy full SHA for b2c4638
.github/workflows/linting.yml
@@ -26,7 +26,7 @@ jobs:
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
29
- python -m pip install flake8 pytest coverage
+ python -m pip install flake8 pytest coverage bandit
30
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
- name: Lint with flake8
32
@@ -41,3 +41,6 @@ jobs:
41
42
coverage run --source src -m pytest -s
43
coverage report
44
+ - name: Analyze with Bandit
45
+ run: |
46
+ bandit -r src
0 commit comments