Skip to content

Commit

Permalink
Add default tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
seanrees committed Nov 25, 2022
1 parent 2115663 commit d1d66b4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "bazel build ...",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Test",
"type": "shell",
"command": "bazel test ...",
"group": {
"kind": "test",
}
},
{
"label": "Package",
"type": "shell",
"command": "bazel build :main-deb",
},
]
}

0 comments on commit d1d66b4

Please sign in to comment.