drone-test/.drone.jsonnet
Jacob Kiers 1d32bbcd8b
All checks were successful
continuous-integration/drone/push Build is passing
Jsonnet test 4
2022-08-10 22:51:38 +00:00

18 lines
346 B
Plaintext

{
"kind": "pipeline",
"type": "docker",
"name": "default",
"platform": {
"arch": "amd64"
},
"steps": [
{
"name": "check",
"image": "rust:1.62",
"commands": [
"echo Hello World from Jsonnet!",
"cargo check",
]
}
]
}