📝 Add CODE_OF_CONDUCT.md, SECURITY.md, and CONTRIBUTING.md for improv… #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security Scan | |
on: [push, pull_request] | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Run Secure Code Scanner | |
run: | | |
python scanner.py --repo "${{ github.repository }}" |