all repos

gopher.nvim @ 53ab4274c229aa9a3bea4afab55845077c873e39

Minimalistic plugin for Go development
2 files changed, 15 insertions(+), 14 deletions(-)
chore: update tasks, run tests on all recent versions
Author: Olexandr Smirnov olexsmir@gmail.com
Committed at: 2025-08-27 21:20:36 +0300
Change ID: nluunlmvrnypvmwtotszmvlsrssssllu
Parent: 0969690
M .github/workflows/tests.yml

@@ -15,6 +15,12 @@ os: [ubuntu-latest]

version: - stable - nightly + - v0.10.0 + - v0.10.4 + - v0.11.0 + - v0.11.1 + - v0.11.2 + - v0.11.3 runs-on: ${{ matrix.os }} steps: - name: Install Task

@@ -57,4 +63,4 @@

- name: Run Tests run: | nvim --version - task tests + task test
M Taskfile.yml

@@ -1,28 +1,23 @@

version: "3" tasks: lint: - desc: runs all linters + desc: run all linters cmds: - - task: selene + - selene . - stylua --check . - selene: - desc: runs lua linter(selene) - cmds: - - selene . + format: + desc: run formatter + cmd: stylua . - stylua: - desc: runs lua formatter - cmds: - - stylua . - - tests: + test: desc: run all tests cmds: - | nvim --clean --headless \ -u ./scripts/minimal_init.lua \ - -c "lua MiniTest.run()" + -c "lua MiniTest.run()" \ + -c ":qa!" docgen: desc: generate vimhelp