File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ version: 2.1
3
3
4
4
orbs :
5
5
python : circleci/python@2.1.1
6
+ platform-helpers-general : okta/general-platform-helpers@1.8
6
7
7
8
jobs :
8
9
build_and_test :
20
21
- run :
21
22
name : Run Integration Tests
22
23
command : pytest tests/integration
24
+ snyk-scan :
25
+ docker :
26
+ - image : cimg/python:3.10
27
+ steps :
28
+ - attach_workspace : # Allows for sharing of build-workspace (containing downloaded dependencies) (optional)
29
+ at : ~/project # This is the working directory for CCI containers, change if necessary
30
+ - checkout # Might not need this if you have "persist_to_workspace" and "attach_workspace"
31
+ - run : | # Might not need this if you have "persist_to_workspace" and "attach_workspace"
32
+ pip install -r requirements.txt
33
+ - platform-helpers-general/step-run-snyk-monitor :
34
+ scan-all-projects : true
35
+ skip-unresolved : false
23
36
workflows :
24
37
" Circle CI Tests " :
25
38
jobs :
26
39
- build_and_test
40
+ - snyk-scan :
41
+ context :
42
+ - static-analysis
43
+ name : execute-snyk
You can’t perform that action at this time.
0 commit comments