Fix tests by switching from Plenary to lazy.nvim's Busted integration #186
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare dependencies | |
run: | | |
mkdir -p _neovim | |
curl -sL https://github.com/neovim/neovim/releases/download/v0.10.2/nvim-linux64.tar.gz | tar xzf - --strip-components=1 -C "${PWD}/_neovim" | |
- name: Run tests | |
run: | | |
export PATH="${PWD}/_neovim/bin:${PATH}" | |
nvim --version | |
make test |