Skip to content

Commit

Permalink
Add semgrep checks
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaweedbrainCY committed Sep 14, 2023
1 parent 83bffd0 commit d8ceab8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@ on:


jobs:
security_scan_analysis:
name: Security Scan Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x

- name: Install semgrep
run: python3 -m pip install semgrep

- name: Run semgrep
run: semgrep --config=auto

python_test_and_coverage:
name: Python Test and Coverage
runs-on: ubuntu-latest
Expand Down Expand Up @@ -42,5 +60,6 @@ jobs:

- name: Upload coverage report
uses: coverallsapp/github-action@v2



0 comments on commit d8ceab8

Please sign in to comment.