Created
March 18, 2016 07:17
-
-
Save judwhite/1fad7f34e04f5169ed2e to your computer and use it in GitHub Desktop.
.vscode/tasks.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.1.0", | |
"command": "go", | |
"showOutput": "always", | |
"tasks": [ | |
{ | |
"taskName": "build", | |
"isBuildCommand": true | |
}, | |
{ | |
"taskName": "test", | |
"isTestCommand": true, | |
"args": ["./..."] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment