Add overseer cargo jobs

This commit is contained in:
2024-06-06 00:59:14 +02:00
parent dafec71c57
commit bbb673e7e2
5 changed files with 98 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
return {
name = "Cargog Test",
builder = function()
return {
cmd = {
"cargo"
},
args = {
"test",
},
components = {
{
"on_output_quickfix"
},
"default"
}
}
end,
condition = {
filetype = {
"rust",
}
}
}