-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.devcontainer.json
37 lines (37 loc) · 1.18 KB
/
.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": "zig",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers-contrib/features/zig:1": {}
},
"customizations": {
"github.com/rradczewski/kata-bootstraps": {
"failingTestVerification": "zig build test 2>&1 | tee /dev/stderr | grep -q '1/2 tests passed; 1 failed'",
"testCommand": "zig build test",
"languageLogo": "./zig-original.svg",
"resources": [
{
"name": "Learn zig",
"url": "https://ziglang.org/learn/"
},
{
"name": "zig Guide",
"url": "https://zig.guide/"
},
{
"name": "zigings/exercises",
"url": "https://codeberg.org/ziglings/exercises/"
},
{
"name": "Assertions",
"url": "https://ziglang.org/documentation/master/#std;testing;testing"
}
]
},
"vscode": {
"extensions": [
"ziglang.vscode-zig"
]
}
}
}