Files
nvim-config/lua/overseer/template/user/go_bench.lua

16 lines
366 B
Lua

return {
name = "go: benchmarks",
desc = "Run Go benchmarks with memory stats",
builder = function()
return {
cmd = { "go", "test" },
args = { "-bench=.", "-benchmem", "./..." },
components = {
"default",
"on_output_quickfix",
{ "on_complete_notify", statuses = { "SUCCESS", "FAILURE" } },
},
}
end,
}