17 lines
331 B
YAML
17 lines
331 B
YAML
# https://docs.gitlab.com/user/application_security/sast/
|
|
include:
|
|
- template: Jobs/SAST.latest.gitlab-ci.yml
|
|
|
|
sast: &sast
|
|
stage: test
|
|
|
|
# SAST tools only support x64
|
|
tags:
|
|
- amd64
|
|
|
|
# Don't wait, since this has no dependencies.
|
|
# https://docs.gitlab.com/ci/yaml/#needs
|
|
needs: []
|
|
|
|
gitlab-advanced-sast:
|
|
<<: *sast
|