chore: try to fix ci mistakes
This commit is contained in:
parent
0fa87770e7
commit
0ef08fbd19
23
.github/workflows/test.yaml
vendored
23
.github/workflows/test.yaml
vendored
@ -16,6 +16,9 @@ jobs:
|
|||||||
mkdir -p _neovim
|
mkdir -p _neovim
|
||||||
curl -sL "https://github.com/neovim/neovim/releases/download/${{ matrix.rev }}" | tar xzf - --strip-components=1 -C "${PWD}/_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
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
export PATH="${PWD}/_neovim/bin:${PATH}"
|
export PATH="${PWD}/_neovim/bin:${PATH}"
|
||||||
@ -25,18 +28,24 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu22.04]
|
include:
|
||||||
rev:
|
- os: ubuntu-22.04
|
||||||
[
|
rev: nightly/nvim-linux64.tar.gz
|
||||||
nightly/nvim-linux64.tar.gz,
|
- os: ubuntu-22.04
|
||||||
v0.8.2/nvim-linux64.tar.gz,
|
rev: v0.7.2/nvim-linux64.tar.gz
|
||||||
v0.7.2/nvim-linux64.tar.gz,
|
- os: ubuntu-22.04
|
||||||
]
|
rev: v0.8.2/nvim-linux64.tar.gz
|
||||||
name: Test
|
name: Test
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- "lua/**"
|
- "lua/**"
|
||||||
|
- "plugin/**"
|
||||||
|
- "script/*"
|
||||||
|
- "makefile"
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- "lua/**"
|
- "lua/**"
|
||||||
|
- "plugin/**"
|
||||||
|
- "script/*"
|
||||||
|
- "makefile"
|
||||||
|
2
makefile
2
makefile
@ -1,4 +1,4 @@
|
|||||||
.PHONE: test
|
.PHONE: test
|
||||||
|
|
||||||
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!'
|
||||||
|
5
script/minimal_init.vim
Normal file
5
script/minimal_init.vim
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
set rtp+=.
|
||||||
|
set rtp+=../plenary.nvim/
|
||||||
|
|
||||||
|
runtime! plugin/plenary.vim
|
||||||
|
runtime! plugin/Trans.lua
|
Loading…
x
Reference in New Issue
Block a user