forked from VimPlug/jedi-vim
16 lines
222 B
YAML
16 lines
222 B
YAML
sudo: false
|
|
language: python
|
|
python: 3.6
|
|
env:
|
|
matrix:
|
|
- ENV=test
|
|
- ENV=check
|
|
install:
|
|
- |
|
|
if [ "$ENV" = "test" ]; then
|
|
python3.6 -m pip install pytest
|
|
fi
|
|
script:
|
|
- vim --version
|
|
- make "$ENV"
|