Skip to content

Fix tests by switching from Plenary to lazy.nvim's Busted integration #186

Fix tests by switching from Plenary to lazy.nvim's Busted integration

Fix tests by switching from Plenary to lazy.nvim's Busted integration #186

Workflow file for this run

---
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