summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2026-01-04 03:23:55 +0000
committercopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2026-01-04 03:23:55 +0000
commit9e6356f3df62e73f63946c5658b5fd4b37599014 (patch)
treed43811c85c5cac0b354b205fd38a4e4de02462ec /.github
parent625d99ad598e5d84e71b99e3eeb6de2a6f1a02db (diff)
downloada4-9e6356f3df62e73f63946c5658b5fd4b37599014.tar.xz
a4-9e6356f3df62e73f63946c5658b5fd4b37599014.zip
Install Neovim from GitHub releases instead of apt
Co-authored-by: ThePrimeagen <4458174+ThePrimeagen@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/makefile.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml
index d6bac0e..9d2b733 100644
--- a/.github/workflows/makefile.yml
+++ b/.github/workflows/makefile.yml
@@ -16,8 +16,10 @@ jobs:
- name: Install Neovim
run: |
- sudo apt-get update
- sudo apt-get install -y neovim
+ wget -q https://github.com/neovim/neovim/releases/download/v0.10.3/nvim-linux64.tar.gz
+ tar xzf nvim-linux64.tar.gz
+ sudo mv nvim-linux64 /opt/nvim
+ sudo ln -s /opt/nvim/bin/nvim /usr/local/bin/nvim
- name: Install luarocks
run: |