Compare commits
1 Commits
v1
...
2-add-pyli
Author | SHA1 | Date | |
---|---|---|---|
b4130b32f7
|
20
.gitlab-ci.yml
Normal file
20
.gitlab-ci.yml
Normal file
@ -0,0 +1,20 @@
|
||||
stages:
|
||||
- linting
|
||||
|
||||
|
||||
flake8:
|
||||
stage: linting
|
||||
image: python:3-alpine
|
||||
before_script:
|
||||
- pip install flake8 --no-cache-dir
|
||||
script: flake8 main.py
|
||||
allow_failure: true
|
||||
|
||||
|
||||
pylint:
|
||||
stage: linting
|
||||
image: python:3-alpine
|
||||
before_script:
|
||||
- pip install pylint --no-cache-dir
|
||||
script: pylint main.py
|
||||
allow_failure: true
|
Reference in New Issue
Block a user