Set .gitlab-ci.yml to enable or configure SAST

This commit is contained in:
schweby 2021-03-25 07:36:09 +00:00
parent d5cf2abccc
commit 705d253eae

View file

@ -1,9 +1,17 @@
# You can override the included template(s) by including variable overrides
# See https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
# Note that environment variables can be set in several places
# See https://docs.gitlab.com/ee/ci/variables/#priority-of-environment-variables
stages:
- build
- build
- test
build:
tags:
- nix
- nix
stage: build
script:
- nix-build -A deploy.all
- nix-build -A deploy.all
sast:
stage: test
include:
- template: Security/SAST.gitlab-ci.yml