mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-06 10:54:22 +08:00
16 lines
235 B
YAML
16 lines
235 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 --keep-going "$ENV"
|