diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eae75d4..7422053 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,9 @@ jobs: test: name: Build and test + strategy: + matrix: + nvim-version: ["v0.9.5", "stable", "nightly"] runs-on: ubuntu-latest steps: - name: Checkout @@ -70,7 +73,7 @@ jobs: run: | test -d _neovim || { mkdir -p _neovim - curl -sL "https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz" | tar xzf - --strip-components=1 -C "${PWD}/_neovim" + curl -sL "https://github.com/neovim/neovim/releases/download/${{ matrix.nvim-version }}/nvim-linux64.tar.gz" | tar xzf - --strip-components=1 -C "${PWD}/_neovim" } - name: Build