Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Krish Moodbidri
self-reg
Commits
dc7b60b7
Commit
dc7b60b7
authored
May 14, 2020
by
Bo-Chun Chen
Browse files
Add .gitlab-ci.yml
parent
f0f1d300
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
dc7b60b7
image
:
"
python:3.7"
before_script
:
-
python --version
-
pip install flake8
-
pip install pylint
stages
:
-
lint
flake8
:
tags
:
-
lint
stage
:
lint
script
:
-
flake8 --exclude=tests.py --max-line-length=120 *.py app
pylint
:
tags
:
-
lint
stage
:
lint
script
:
-
pylint --ignore=tests.py --max-line-length=120 *.py app
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment