summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: ee5b8fbde7c91abedbdaf2d1b011a8b5ae859dad (plain) (tree)




























                                             
stages:
  - test

pyflakes2:
  stage: test
  script:
  - apt-get update
  - apt-get -y -qq install python2.7 pyflakes
  - mkdir debug
  - cp game/*.rpy debug/
  - cp game/*/*.rpy debug/
  - python rparse.py
  - pyflakes debug/
  image: debian:buster
  allow_failure: true

sast:
  stage: test
include:
- template: Security/SAST.gitlab-ci.yml

semgrep-sast:
  dependencies:
    - pyflakes2

bandit-sast:
  dependencies:
    - pyflakes2