Add a vscode task to continuously build+test
This commit is contained in:
committed by
Clark Gaebel
parent
a4d47770de
commit
55df2114fd
+2
-2
@@ -2,5 +2,5 @@ _build
|
||||
*.install
|
||||
*.merlin
|
||||
_opam
|
||||
.vscode
|
||||
|
||||
.vscode/*
|
||||
!.vscode/tasks.json
|
||||
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "watch",
|
||||
"command": "dune",
|
||||
"args": [
|
||||
"build",
|
||||
"@default",
|
||||
"@runtest",
|
||||
"@fmt",
|
||||
"--auto-promote",
|
||||
"--watch"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$ocamlc"
|
||||
],
|
||||
"isBackground": true,
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user