Skip to content
Snippets Groups Projects
.gitlab-ci.yml 439 B
Newer Older
stages:
  - pretest

linter:
  stage: pretest
  except:
    variables:
      - $ENABLE_NIGHTLY_BUILDS
  image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full
  script:
    - flake8 pystencilssfg
  tags:
    - docker

typechecker:
  stage: pretest
  except:
    variables:
      - $ENABLE_NIGHTLY_BUILDS
  image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full
  script:
    - pip install mypy
    - mypy pystencilssfg 
  tags:
    - docker