Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@ jobs:
root: .
paths:
- .
snyk-scan:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace: # Allows for sharing of build-workspace (containing downloaded dependencies) (optional)
at: ~/project # This is the working directory for CCI containers, change if necessary
- checkout # Might not need this if you have "persist_to_workspace" and "attach_workspace"
- run: | # Might not need this if you have "persist_to_workspace" and "attach_workspace"
pip install -r requirements.txt
- platform-helpers-general/step-load-dependencies
- platform-helpers-general/step-run-snyk-monitor:
scan-all-projects: true
skip-unresolved: false
run-on-non-main: true

workflows:
"Malware Scanner":
Expand All @@ -32,3 +46,10 @@ workflows:
- static-analysis
requires:
- build
- snyk-scan:
name: execute-snyk
filters:
branches:
only:
- master
- main