Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 576 Bytes

File metadata and controls

18 lines (14 loc) · 576 Bytes

Add this pipeline to your repo

You can just simply use the below code and paste it in your .gitlab-ci.yml file of your repo. Generally, this will be added to your repo by default.

    stages:
        - code-quality
        - test

    include:
        - remote: 'https://github.com/detecttechnologies/Gitlab-CI-CD-Templates/raw/main/code-quality/python/.gitlab-ci.yml'
        - template: Security/SAST.gitlab-ci.yml
        - template: Security/Secret-Detection.gitlab-ci.yml

    # Gitlab SAST variables
    variables:
        SECURE_LOG_LEVEL: "info"