diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c06892c..b199355 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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: |