Skip to content

Add get_system_info script #26

Add get_system_info script

Add get_system_info script #26

Workflow file for this run

# Bandit static analysis (for Python code)
name: Bandit
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
bandit:
name: Bandit
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install Bandit
run: python3 -m pip install bandit
# Run Bandit recursively, but omit _deps directory (with 3rd party code)
- name: Run Bandit
run: python3 -m bandit -r . -x '/_deps/'