Skip to content

Commit

Permalink
Merge pull request #24 from freedomofpress/check-for-vulns
Browse files Browse the repository at this point in the history
CI: Check for known vulnerabilities and perform static analysis
  • Loading branch information
redshiftzero authored Sep 26, 2018
2 parents 64adc5e + 7925c3a commit 86e8ad2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@ jobs:
- run:
name: Run flake8
command: pipenv run flake8

- run:
name: Check Python dependencies for known vulnerabilities
command: pipenv check

- run:
name: Run static analysis on source code to find security issues
command: pipenv install bandit && pipenv run bandit --recursive . -ll

0 comments on commit 86e8ad2

Please sign in to comment.