diff options
author | dundargoc <gocdundar@gmail.com> | 2023-10-20 20:36:23 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-10-21 21:54:11 +0200 |
commit | 3a3e0251267a99eec6cfb2a058f9e992d01107fd (patch) | |
tree | 360ef6e4fdbc3c80186bc917d0e0149d0a8f93bb | |
parent | 999879a5125b98a3fc908ade7c7e5f16af794277 (diff) | |
download | rneovim-3a3e0251267a99eec6cfb2a058f9e992d01107fd.tar.gz rneovim-3a3e0251267a99eec6cfb2a058f9e992d01107fd.tar.bz2 rneovim-3a3e0251267a99eec6cfb2a058f9e992d01107fd.zip |
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.
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files 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 |