Vim config CI #2

Merged
esensar merged 11 commits from vim-tests into main 2022-04-28 16:07:05 +00:00
Showing only changes of commit df82f8f362 - Show all commits

View file

@ -23,9 +23,13 @@ jobs:
with:
neovim: true
- name: Install packer
if: ${{ matrix.platform != 'windows-latest' }}
run: |
NVIM_HOME=$(printf "luado return vim.fn.stdpath(\"data\")\n%%print\n" | nvim -es)
git clone https://github.com/wbthomason/packer.nvim $NVIM_HOME/site/pack/packer/start/packer.nvim
git clone https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim
- name: Install packer on Windows
if: ${{ matrix.platform == 'windows-latest' }}
run: |
git clone https://github.com/wbthomason/packer.nvim "$env:LOCALAPPDATA\nvim-data\site\pack\packer\start\packer.nvim"
- name: Run neovim checks
run: make check_neovim
env: