Skip to content
Snippets Groups Projects

Update gitlab ci configuration

Closed Bo-Chun Chen requested to merge update-gitlab-ci into master
1 file
+ 6
4
Compare changes
  • Side-by-side
  • Inline
+ 6
4
image: "python:3.7"
image: "python:3.6"
before_script:
before_script:
- python --version
- python --version
- pip install pylint
- pip install pylint
stages:
stages:
- lint
- linting
linting:
linting:
 
stage: linting
tags:
tags:
- lint
- lint
stage: lint
script:
script:
- pylint --ignore=tests.py --max-line-length=120 *.py app
- pylint --ignore=tests.py --max-line-length=79 *.py app
 
only:
 
- merge_requests
Loading