From 5c3f4f99c5dff6862fd9597a82fcf5fe853af312 Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Thu, 27 Feb 2025 20:33:49 +0200 Subject: [PATCH] maybe this one will cure all my problems in life? --- .github/workflows/tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8aa665e..546eaa3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,9 +30,14 @@ jobs: check-latest: false - name: Install Neovim - uses: MunifTanjim/setup-neovim-action@v1 - with: - tag: ${{ matrix.version }} + shell: bash + run: | + mkdir -p /tmp/nvim + wget -q https://github.com/neovim/neovim/releases/download/${{ matrix.version }}/nvim-linux-x86_64.appimage -O /tmp/nvim/nvim.appimage + cd /tmp/nvim + chmod a+x ./nvim.appimage + ./nvim.appimage --appimage-extract + echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH - uses: actions/checkout@v3