Skip to content

Commit

Permalink
Create sastt.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
vishal-deriv authored Feb 14, 2024
1 parent 0d48707 commit e125c3c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/sastt.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Flawfinder Analysis

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
flawfinder-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Flawfinder
run: pip install flawfinder
- name: Run Flawfinder
run: flawfinder --html --context /tmp/ > flawfinder-report.html
- name: Upload Flawfinder Report
uses: actions/upload-artifact@v2
with:
name: flawfinder-report
path: flawfinder-report.html

0 comments on commit e125c3c

Please sign in to comment.