Skip to content

Commit

Permalink
Added bandit to linting workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
oogles committed Aug 24, 2021
1 parent 2d2f873 commit 137219b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,16 @@ jobs:
with:
linters: isort
run: isort --check --diff .

bandit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-python@v2
with:
python-version: 3.9
- run: python -m pip install bandit
- name: bandit
run: bandit -r -q -x tests .

0 comments on commit 137219b

Please sign in to comment.