From 3a3e0251267a99eec6cfb2a058f9e992d01107fd Mon Sep 17 00:00:00 2001 From: dundargoc Date: Fri, 20 Oct 2023 20:36:23 +0200 Subject: [PATCH] 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. --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aed079cb60..44cf65a65e 100644 --- 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