Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sidbose87 authored Apr 5, 2024
1 parent 80c7370 commit 9db5c65
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI Stage

on: [push]

jobs:
sast_scan1:
name: Run Bandit
runs_on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.10
- name: Install Bandit
run: pip install bandit
- name: Run Bandit
run: bandit -r .

0 comments on commit 9db5c65

Please sign in to comment.