Skip to content
Snippets Groups Projects

Minimal .gitlab-ci.yml to enable Static Application Security Testing

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Andrew W Petro
    • Step 1: Add this .gitlab-ci.yml in the root directory of a project on git.doit that does not yet have a .gitlab-ci.yml .
    • There is no step 2.

    (For more context see 2023-04-19 WPS show-and-tell outline on this topic.)

    .gitlab-ci.yml 116 B
    stages:
    - test
    
    sast:
      tags:
        - docker
        - aws
      stage: test
    
    include:
    - template: Security/SAST.gitlab-ci.yml
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment