|
|
|
@ -22,9 +22,6 @@ jobs:
|
|
|
|
|
|
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
|
steps:
|
|
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
|
|
# Runs a set of commands using the runners shell
|
|
|
|
|
- name: Install latest neovim
|
|
|
|
|
run: |
|
|
|
|
@ -35,8 +32,10 @@ jobs:
|
|
|
|
|
./nvim.appimage --appimage-extract
|
|
|
|
|
sudo mv squashfs-root /
|
|
|
|
|
sudo ln -s /squashfs-root/AppRun /usr/bin/nvim
|
|
|
|
|
ls -la
|
|
|
|
|
nvim --version
|
|
|
|
|
nvim --headless -c ':checkhealth' -c ':qa'
|
|
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
- name: Setup kitckstart and start nvim
|
|
|
|
|
run: |
|
|
|
|
|
ln -sf $GITHUB_WORKSPACE "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
|
|
|
|
|