4e04bf9d22
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
17 lines
313 B
CUE
17 lines
313 B
CUE
package main
|
|
|
|
import (
|
|
"dagger.io/dagger/engine"
|
|
)
|
|
|
|
engine.#Plan & {
|
|
// should fail because path does not exist locally
|
|
inputs: directories: test: path: "./fasdfsdfs"
|
|
actions: verify: engine.#ReadFile & {
|
|
input: inputs.directories.test.contents
|
|
path: "test.txt"
|
|
} & {
|
|
contents: "local directory"
|
|
}
|
|
}
|