Skip to content

Commit

Permalink
Add bandit scan
Browse files Browse the repository at this point in the history
  • Loading branch information
Wovchena committed Apr 25, 2024
1 parent af005eb commit b385536
Show file tree
Hide file tree
Showing 3 changed files with 417 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: bandit
on:
pull_request:
paths-ignore:
- 'thirdparty'
- '**.md'
jobs:
python -m bandit --recursive --configfile bandit.yml .:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
- run: python -m pip install bandit
- run: python -m bandit --recursive --configfile bandit.yml .
Loading

0 comments on commit b385536

Please sign in to comment.