diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b2e7175d38c6ebeadb706cfe1357cc0f6ecf27bb..9771b909b101dab03f8cc724de9e9b07e9eea724 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,3 +23,21 @@ redis-worker: include: - local: redis-worker/.gitlab-ci.yml strategy: depend + +snyk:monitor: + stage: test + image: + name: snyk/snyk:python + entrypoint: [""] + script: + - snyk monitor --all-projects + needs: [] + +snyk:test: + stage: test + image: + name: snyk/snyk:python + entrypoint: [""] + script: + - snyk test --all-projects + needs: []