Skip to content

Merge pull request #195 from dseichter/dependabot/pip/src/uvicorn-0.48.0 #402

Merge pull request #195 from dseichter/dependabot/pip/src/uvicorn-0.48.0

Merge pull request #195 from dseichter/dependabot/pip/src/uvicorn-0.48.0 #402

Workflow file for this run

name: 'Bandit Check'
on:
push:
branches:
- main
- dseichter/*
paths-ignore:
- 'docs/**'
- '.github/workflows/gh-page.yml'
pull_request:
branches:
- '*'
paths-ignore:
- 'docs/**'
- '.github/workflows/gh-page.yml'
workflow_dispatch:
jobs:
Bandit:
name: 'Bandit'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v6.0.2
- name: 'Set up Python'
uses: actions/setup-python@v6.2.0
with:
python-version: '3.14'
- name: 'Install Dependencies'
run: |
python -m pip install --upgrade pip
pip install bandit
- name: 'Bandit Check'
run: |
# Exclude the GUI file from the bandit check, because it is auto-generated by wxFormBuilder
bandit -r . --exclude=gui.py,icons.py,./tests,./venv -f txt >> $GITHUB_STEP_SUMMARY