Skip to content

Add bandit scan.

Add bandit scan. #1

Workflow file for this run

name: Bandit Security Scan
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
security_scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install bandit
- name: Run Bandit
run: bandit -r .