mirror of
https://github.com/pushbits/server.git
synced 2025-05-03 12:16:20 +02:00
Add tasks for Code
This commit is contained in:
parent
d9e2ac1ca3
commit
f30ee50e99
1 changed files with 35 additions and 0 deletions
35
.vscode/tasks.json
vendored
Normal file
35
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "build",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make build",
|
||||||
|
"presentation": {
|
||||||
|
"panel": "shared",
|
||||||
|
"reveal": "always",
|
||||||
|
"focus": true
|
||||||
|
},
|
||||||
|
"problemMatcher": [],
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "test",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make test",
|
||||||
|
"presentation": {
|
||||||
|
"panel": "shared",
|
||||||
|
"reveal": "always",
|
||||||
|
"focus": true
|
||||||
|
},
|
||||||
|
"problemMatcher": [],
|
||||||
|
"group": {
|
||||||
|
"kind": "test",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue