Skip to content

Test flags

Test flags #14

Workflow file for this run

name: Bandit Code Scan
on:
pull_request:
branches: [ main ]
permissions:
pull-requests: write
jobs:
bandit-action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Bandit Scan
uses: ./
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: "."
exit_zero: "true"
recursive: "true"
skips: B404,B403