Update and rename blank.yml to test-nvim.yml

This commit is contained in:
Hörmet Yiltiz 2023-12-20 19:12:38 -05:00 committed by GitHub
parent 9cb156e491
commit 436ef6a451
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -26,11 +26,13 @@ jobs:
- uses: actions/checkout@v3
# Runs a set of commands using the runners shell
- name: Install neovim
- name: Install latest neovim
run: |
echo "Finished git checkout in $GITHUB_WORKSPACE"
sudo apt update
sudo apt install -y neovim
# not using apt as repos may lag behind
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
chmod u+x nvim.appimage
ln -sf ./nvim.appimage /usr/local/bin/nvim
nvim --version
- name: Setup kitckstart and start nvim
run: |