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

delete-hadolint-workflow #227

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: [push]

jobs:
sast_scan:
name: Run Bandit Scan on app
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install Bandit
run: pip install bandit

- name: Run Bandit Scan in current directory
run: bandit -r .
29 changes: 0 additions & 29 deletions docker-compose.yml

This file was deleted.