From b85cf4f54cb8d794844e61128a550ed3ea166815 Mon Sep 17 00:00:00 2001 From: "Andy K. Massimino" Date: Tue, 8 Dec 2020 19:32:05 -0500 Subject: [PATCH] Fix github action --- .github/workflows/neovim.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/neovim.yml b/.github/workflows/neovim.yml index 9ce1b3b..eff1649 100644 --- a/.github/workflows/neovim.yml +++ b/.github/workflows/neovim.yml @@ -12,10 +12,9 @@ jobs: build: strategy: matrix: - vim_type: ['Neovim'] neovim_version: - - 'head' - - 'stable' + - 'nightly' + - 'v0.4.3' runs-on: ubuntu-latest steps: - uses: 'actions/checkout@v2' @@ -26,8 +25,8 @@ jobs: - name: 'setup Neovim' uses: 'thinca/action-setup-vim@v1' with: - vim_version: '${{ matrix.neovim_version }}' - vim_type: '${{ matrix.vim_type }}' + neovim: true + verion: '${{ matrix.neovim_version }}' - name: 'Show version' run: nvim --version