Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
youngandbeautifulz authored Aug 13, 2024
1 parent 6421750 commit 68ddf4f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: [push]

jobs:
sast_scan:
name: Rub bandit scan
runs-on: ubuntu-latest

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

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

- name: Install bandir
run: pip install bandit

-name: Run bandit scan
run: bandit -r .

0 comments on commit 68ddf4f

Please sign in to comment.