-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (37 loc) · 943 Bytes
/
bandit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Bandit Security Scan
on:
push:
branches: ['**']
pull_request:
branches: [ "master" ]
jobs:
bandit_scan:
name: Bandit Security Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
uses: actions/checkout@v3
- working-directory: ./backend
run: |
python -m pip install --upgrade pip
pip3 install poetry
poetry config virtualenvs.create false
poetry shell
poetry install
- name: Run security scan
uses: actions/checkout@v3
- working-directory: ./backend
run: |
bandit -r .
- name: Upload report
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: bandit-report
path: output/bandit-report.txt