diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8e02a51..b8af929 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,6 +16,9 @@ jobs: mkdir -p _neovim curl -sL "https://github.com/neovim/neovim/releases/download/${{ matrix.rev }}" | tar xzf - --strip-components=1 -C "${PWD}/_neovim" } + mkdir -p ~/.local/share/nvim/site/pack/vendor/start + git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim + ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start - name: Run tests run: | export PATH="${PWD}/_neovim/bin:${PATH}" @@ -25,18 +28,24 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu22.04] - rev: - [ - nightly/nvim-linux64.tar.gz, - v0.8.2/nvim-linux64.tar.gz, - v0.7.2/nvim-linux64.tar.gz, - ] + include: + - os: ubuntu-22.04 + rev: nightly/nvim-linux64.tar.gz + - os: ubuntu-22.04 + rev: v0.7.2/nvim-linux64.tar.gz + - os: ubuntu-22.04 + rev: v0.8.2/nvim-linux64.tar.gz name: Test on: pull_request: paths: - "lua/**" + - "plugin/**" + - "script/*" + - "makefile" push: paths: - "lua/**" + - "plugin/**" + - "script/*" + - "makefile" diff --git a/lua/test/base_spec.lua b/lua/test/buffer_spec.lua similarity index 100% rename from lua/test/base_spec.lua rename to lua/test/buffer_spec.lua diff --git a/makefile b/makefile index b490585..2fc1b83 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ .PHONE: test test: - @nvim --headless -c "lua require'plenary'" -c "PlenaryBustedDirectory lua/test/" + nvim --headless --noplugin -u script/minimal_init.vim -c "PlenaryBustedDirectory lua/test/ { minimal_init = './scripts/minimal_init.vim' }" -c 'qa!' diff --git a/script/minimal_init.vim b/script/minimal_init.vim new file mode 100644 index 0000000..7679977 --- /dev/null +++ b/script/minimal_init.vim @@ -0,0 +1,5 @@ +set rtp+=. +set rtp+=../plenary.nvim/ + +runtime! plugin/plenary.vim +runtime! plugin/Trans.lua