Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more Actions for CI/CD to check PRs & commits #431

Merged
merged 4 commits into from
Nov 11, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
GitHub Action to run a security scan using bandit
  • Loading branch information
cclauss committed Sep 3, 2021
commit 84381fec14bb2fd6ff89a2437a1135f7c13b91b4
10 changes: 10 additions & 0 deletions .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: bandit
on: [pull_request, push]
jobs:
bandit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install bandit
- run: bandit --recursive --skip B101,B104,B105,B110,B307,B311,B404,B603,B607 .