add deps fig to README #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# Bandit is a security linter designed to find common security issues in Python code. | |
# This action will run Bandit on your codebase. | |
# The results of the scan will be found under the Security tab of your repository. | |
# https://github.com/marketplace/actions/bandit-scan is ISC licensed, by abirismyname | |
# https://pypi.org/project/bandit/ is Apache v2.0 licensed, by PyCQA | |
name: Bandit | |
on: | |
workflow_call: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "master" ] | |
schedule: | |
- cron: '34 0 * * 5' | |
jobs: | |
bandit: | |
runs-on: ubuntu-latest | |
permissions: | |
# required for all workflows | |
security-events: write | |
# only required for workflows in private repositories | |
actions: read | |
contents: read | |
steps: | |
- name: Perform Bandit Analysis | |
uses: PyCQA/bandit-action@v1 |