From e551ca0674fc65954eb943ca4a8e4b9275ba77c1 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Fri, 1 May 2026 08:27:43 +1000 Subject: [PATCH] ci: remove help-check for Nvim nightly --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67b65c315b1..383a05b5233 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,6 +87,7 @@ jobs: - run: make format-check - name: build Nvim from source + if: ${{ matrix.nvim_version == 'stable' }} run: | mkdir -p "${DIR_NVIM_SRC}" curl -L "https://github.com/neovim/neovim/archive/refs/tags/${{ matrix.nvim_version }}.tar.gz" | tar zx --directory "${DIR_NVIM_SRC}/.." @@ -94,3 +95,4 @@ jobs: make doc - run: make help-check + if: ${{ matrix.nvim_version == 'stable' }}