HamadaSalhab is checking the security of the code #645
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bandit security check python agents-api | |
run-name: ${{ github.actor }} is checking the security of the code | |
on: | |
pull_request: | |
paths: | |
- 'agents-api/**' | |
push: | |
paths: | |
- 'agents-api/**' | |
jobs: | |
bandit_check: | |
name: bandit check security of python code in agents-api | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mdegis/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
path: "./agents-api/agents_api" | |
level: high | |
confidence: high | |
# exit_zero: true |