Add vscode stuff
This commit is contained in:
23
.vscode/tasks.json
vendored
Normal file
23
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"type": "shell",
|
||||
"command": "go",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "install",
|
||||
"args": ["install", "-v", "./..."],
|
||||
"group": "build",
|
||||
},
|
||||
{
|
||||
"label": "run",
|
||||
"args": ["run", "${file}"],
|
||||
"group": "build",
|
||||
},
|
||||
{
|
||||
"label": "test",
|
||||
"args": ["test", "-v", "./..."],
|
||||
"group": "test",
|
||||
},
|
||||
],
|
||||
}
|
Reference in New Issue
Block a user