Skip to content

Merge pull request #1022 from 0x12CC/l0_usm_error_checking_2 #1582

Merge pull request #1022 from 0x12CC/l0_usm_error_checking_2

Merge pull request #1022 from 0x12CC/l0_usm_error_checking_2 #1582

Workflow file for this run

# Runs bandit security checker for code written in Python.
name: Bandit
on: [push, pull_request, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linux:
name: Bandit
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v3
- name: Install pip packages
run: pip install -r third_party/requirements.txt
# Scan is run only for the 'tools' folder.
- name: Run Bandit
run: |
bandit -r tools