-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.devcontainer.json
37 lines (37 loc) · 1018 Bytes
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Go",
"image": "mcr.microsoft.com/devcontainers/go:1.23",
"onCreateCommand": "go get && go mod download",
"customizations": {
"github.com/rradczewski/kata-bootstraps": {
"failingTestVerification": "go test -v . | tee /dev/stderr | grep -zPq '(?s)FAIL: TestFails.*PASS: TestSucceeds'",
"testCommand": "go test",
"languageLogo": "./go-original-wordmark.svg",
"resources": [
{
"name": "Go Reference",
"url": "https://go.dev/doc/"
},
{
"name": "Ginkgo Test Runner",
"url": "https://onsi.github.io/ginkgo/"
},
{
"name": "Testify Assertions",
"url": "https://github.com/stretchr/testify/"
}
]
},
"vscode": {
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go"
},
"extensions": [
"golang.Go",
"MS-vsliveshare.vsliveshare"
]
}
}
}