Skip to content
Snippets Groups Projects

Add .gitlab-ci.yml

Merged Bruce Cowan requested to merge test into master
Files
2
.gitlab-ci.yml 0 → 100644
+ 12
0
image: python:latest
stages:
- check
before_script:
- python -V
check:
stage: check
script:
- pip install flake8
- flake8 gitlab.py --max-line-length 120
Loading