Skip to content

Commit

Permalink
Add bandit checking to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 committed May 22, 2023
1 parent 6677f9a commit 60a3f4d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install tools
run: pip install pycodestyle pyflakes
run: pip install bandit pycodestyle pyflakes

- name: Lint code
run: pyflakes nova3/engines/*.py
run: |
pyflakes nova3/engines/*.py
bandit --skip B110,B314,B405 nova3/engines/*.py
- name: Format code
run: |
Expand Down

0 comments on commit 60a3f4d

Please sign in to comment.