add plenary install stage to ci test runner
All checks were successful
tests / test (push) Successful in 8s

This commit is contained in:
2026-01-01 12:53:28 +01:00
parent 77a7ebab4d
commit 58f0edc14b

View File

@@ -29,5 +29,13 @@ jobs:
- name: Neovim Version - name: Neovim Version
run: nvim --version run: nvim --version
- name: Install plenary.nvim
shell: bash
run: |
set -euo pipefail
target_dir="${HOME}/.local/share/nvim/site/pack/vendor/start/plenary.nvim"
mkdir -p "$(dirname "${target_dir}")"
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim "${target_dir}"
- name: Run Tests - name: Run Tests
run: bash run_test.sh run: bash run_test.sh