11 lines
206 B
YAML
11 lines
206 B
YAML
|
before_script:
|
||
|
- python --version
|
||
|
- pip install -r requirements.txt
|
||
|
|
||
|
stages:
|
||
|
- Static Analysis
|
||
|
|
||
|
flake8:
|
||
|
stage: Static Analysis
|
||
|
script:
|
||
|
- flake8 --max-line-length=120 --ignore=E402,E266, src/*.py
|