Skip to content

Adding 3.12 to the shields badges on the README #12

Adding 3.12 to the shields badges on the README

Adding 3.12 to the shields badges on the README #12

Workflow file for this run

name: Bandit
on:
pull_request:
push:
branches:
- master
release:
types:
- created
jobs:
bandit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bandit
- name: Run Bandit Report
run: bandit -r .
- name: Save Bandit txt Report
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
path: bandit_report.txt