14 lines
170 B
YAML
14 lines
170 B
YAML
dist: trusty
|
|
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
|
|
cache:
|
|
pip: true
|
|
|
|
install:
|
|
- pip install --force-reinstall pylint==1.9.2
|
|
|
|
script:
|
|
- ./pylint_check
|