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