From b704b5baf77cca5f5db5ae062315a7685daa677c Mon Sep 17 00:00:00 2001 From: David Yonge-Mallo Date: Sat, 15 Aug 2026 08:15:14 +0200 Subject: [PATCH] ci: move nightly `continue-on-error` to the step level so it doesn't gate --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e3e3e42..343db254 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,8 +145,6 @@ jobs: # `nvim_win_add_ns`) all have an explicit gate. `stable` / # `nightly` give forward-compat coverage on top. neovim: [v0.10.4, v0.11.6, stable, nightly] - # Keep nightly as an early-warning signal but don't let it block PRs. - continue-on-error: ${{ matrix.neovim == 'nightly' }} name: Test (Neovim ${{ matrix.neovim }}) steps: - uses: actions/checkout@v4 @@ -184,6 +182,8 @@ jobs: run: pip install mercurial - name: Run tests + # Keep nightly as an early-warning signal but don't let it block PRs. + continue-on-error: ${{ matrix.neovim == 'nightly' }} run: | export PATH="$HOME/.local/bin:$PATH" make test