Skip to content
Snippets Groups Projects
.gitlab-ci.yml 307 B
Newer Older
Jarrod Pas's avatar
Jarrod Pas committed
image: python:alpine

before_script:
   - pip install -e .
   - pip install pylint pycodestyle pydocstyle

pylint:
 stage: test
 script: 
   - pylint pydtn examples
   
pycodestyle:
 stage: test
 script: 
   - pycodestyle pydtn examples
 
pydocstyle:
  stage: test
  script:
    - pydocstyle pydtn examples