ale/.appveyor.yml

22 lines
543 B
YAML

---
# Disabling building for AppVeyor. We are just testing things.
build: false
clone_depth: 10
init:
# Stop git from changing newlines
- git config --global core.autocrlf input
install:
# Download and unpack Vim
- cd C:\
- ps: 'Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586w32.zip
-OutFile C:\vim.zip'
- ps: Add-Type -A System.IO.Compression.FileSystem
- ps: "[IO.Compression.ZipFile]::ExtractToDirectory('C:\\vim.zip', 'C:\\vim')"
test_script:
- dir C:\vim
- C:\vim\vim.exe --version
- echo hello world