neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 3a3e0251267a99eec6cfb2a058f9e992d01107fd
parent 999879a5125b98a3fc908ade7c7e5f16af794277
Author: dundargoc <gocdundar@gmail.com>
Date:   Fri, 20 Oct 2023 20:36:23 +0200

ci: install perl provider on mac

Perl provider installation was previously disabled on mac due to a
version conflict in 79bf5074499ae06788762ec49d12af6175b01d15. It is no
longer present, so we enable it.

Diffstat:
M.github/workflows/test.yml | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml @@ -161,10 +161,8 @@ jobs: npm install -g neovim npm link neovim - if [[ $RUNNER_OS != macOS ]]; then - sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log" - perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION' - fi + sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log" + perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION' - uses: ./.github/actions/cache