diff --git a/.github/workflows/bandit.yml b/.github/workflows/bandit.yml new file mode 100644 index 0000000..363e39d --- /dev/null +++ b/.github/workflows/bandit.yml @@ -0,0 +1,15 @@ +name: Code Analysis (Bandit) + +on: push +jobs: + bandit: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - uses: mdegis/bandit-action@v1.0 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + path: "src/" + level: high + confidence: high + exit_zero: true