will this help, i guess not
This commit is contained in:
parent
99be13b830
commit
ac47deaea7
2 changed files with 19 additions and 24 deletions
29
.github/workflows/tests.yml
vendored
29
.github/workflows/tests.yml
vendored
|
|
@ -25,11 +25,11 @@ jobs:
|
|||
version: 3.x
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# - name: Install Go
|
||||
# uses: actions/setup-go@v5
|
||||
# with:
|
||||
# go-version: "1.24.0"
|
||||
# check-latest: false
|
||||
- name: Install Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: "1.24.0"
|
||||
check-latest: false
|
||||
|
||||
- name: Install Neovim
|
||||
uses: rhysd/action-setup-vim@v1
|
||||
|
|
@ -37,15 +37,12 @@ jobs:
|
|||
neovim: true
|
||||
version: ${{ matrix.versions }}
|
||||
|
||||
- name: Just stupid ass test
|
||||
run: nvim --clean --headless -E +'= vim.system {"ls"}:wait().stdout' +q
|
||||
- name: Install Go bins
|
||||
run: |
|
||||
nvim --version
|
||||
task ci:install-deps
|
||||
|
||||
# - name: Install Go bins
|
||||
# run: |
|
||||
# nvim --version
|
||||
# task ci:install-deps
|
||||
#
|
||||
# - name: Run Tests
|
||||
# run: |
|
||||
# nvim --version
|
||||
# task tests
|
||||
- name: Run Tests
|
||||
run: |
|
||||
nvim --version
|
||||
task tests
|
||||
|
|
|
|||
14
Taskfile.yml
14
Taskfile.yml
|
|
@ -30,21 +30,19 @@ tasks:
|
|||
desc: run all tests
|
||||
cmds:
|
||||
- |
|
||||
nvim --headless \
|
||||
nvim --clean --headless \
|
||||
-u ./scripts/minimal_init.lua \
|
||||
-c "lua MiniTest.run()"
|
||||
+"lua MiniTest.run()"
|
||||
|
||||
ci:install-deps:
|
||||
desc: install dependencies for CI
|
||||
cmds:
|
||||
- nvim --headless -u "./scripts/minimal_init.lua" -c "GoInstallDeps" -c "qa!"
|
||||
cmds: ['nvim --headless -u "./scripts/minimal_init.lua" -c "GoInstallDeps" -c "qa!"']
|
||||
|
||||
docgen:
|
||||
desc: generate vimhelp
|
||||
cmds:
|
||||
- |
|
||||
nvim --noplugin \
|
||||
--headless \
|
||||
nvim --clean --headless \
|
||||
-u "./scripts/minimal_init.lua" \
|
||||
-c "luafile ./scripts/docgen.lua" \
|
||||
-c ":qa!"
|
||||
+"luafile ./scripts/docgen.lua" \
|
||||
+":qa!"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue