We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cafcc9 commit 80c8027Copy full SHA for 80c8027
1 file changed
.circleci/config.yml
@@ -74,6 +74,15 @@ jobs:
74
- attach_workspace: { at: . }
75
- run: .buildscript/e2e.sh
76
77
+ snyk:
78
+ <<: *java-base-test
79
+ docker:
80
+ - image: circleci/openjdk:8-jdk-browsers
81
+ steps:
82
+ - checkout
83
+ - attach_workspace: { at: . }
84
+ - run: curl -sL https://raw.githubusercontent.com/segmentio/snyk_helpers/master/initialization/snyk.sh | sh
85
+
86
workflows:
87
version: 2
88
multi-test:
@@ -88,12 +97,16 @@ workflows:
97
- e2e:
89
98
requires:
90
99
- test
91
- coverage:
100
+ static_analysis:
92
101
jobs:
93
102
94
103
95
104
96
105
106
+ - snyk:
107
+ context: snyk
108
+ requires:
109
+ - test
110
test_and_publish:
111
112
- test:
0 commit comments