From 2ce8015efcf0828208dcd4da0fcf36c66012a0b8 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Tue, 30 Nov 2021 11:28:14 -0800 Subject: [PATCH] gitlab CI: enable Static Application Security Testing (SAST) Signed-off-by: Alan Coopersmith --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf592c3..07cd1e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,11 +15,13 @@ include: - project: 'freedesktop/ci-templates' ref: *template_sha file: '/templates/ci-fairy.yml' + - template: Security/SAST.gitlab-ci.yml stages: - prep # prep work like rebuilding the container images if there is a change - build # for actually building and testing things in a container + - test - deploy -- GitLab