03a740ff1e
Signed-off-by: Richard Jones <richard@dagger.io>
16 lines
288 B
CUE
16 lines
288 B
CUE
package main
|
|
|
|
import (
|
|
"alpha.dagger.io/europa/dagger/engine"
|
|
)
|
|
|
|
engine.#Plan & {
|
|
inputs: directories: test: path: "./plan/inputs/directories"
|
|
actions: verify: engine.#ReadFile & {
|
|
input: inputs.directories.test.contents
|
|
path: "test.txt"
|
|
} & {
|
|
contents: "local directory"
|
|
}
|
|
}
|