We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af92812 commit a3d4153Copy full SHA for a3d4153
.github/workflows/bandit.yml
@@ -0,0 +1,16 @@
1
+name: python -m bandit --recursive --configfile bandit.yml .
2
+on:
3
+ pull_request:
4
+ paths-ignore:
5
+ - 'thirdparty'
6
+ - '**.md'
7
+jobs:
8
+ bandit:
9
+ runs-on: ubuntu-20.04
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-python@v4
13
+ with:
14
+ python-version: 3.11
15
+ - run: python -m pip install bandit
16
+ - run: python -m bandit --recursive --configfile bandit.yml .
0 commit comments