Skip to content

add preprocessor script for the windows build #2

add preprocessor script for the windows build

add preprocessor script for the windows build #2

Workflow file for this run

# # GitHub Actions Bandit Workflow
# name: Bandit
# on:
# pull_request:
# branches: [ main ]
# workflow_dispatch:
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v6
# # Task will fail if any high-severity issues are found
# # Ignoring submodules
# - name: Run Bandit Security Analysis
# run: |
# python -m pip install bandit
# python -m bandit -r . -x ./third_party -lll