This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests/cli/simple/main.cue
Andrea Luzzardi 429820036f tests: add basic cli tests
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2021-04-01 16:46:05 -07:00

12 lines
162 B
CUE

package testing
import "dagger.io/llb"
foo: "value"
bar: "another value"
#compute: [
llb.#FetchContainer & {ref: "busybox"},
llb.#Exec & {args: ["true"]},
]