c2766c265b
Signed-off-by: Solomon Hykes <solomon@dagger.io>
16 lines
244 B
CUE
16 lines
244 B
CUE
package main
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
inputs: directories: test: path: "."
|
|
actions: verify: dagger.#ReadFile & {
|
|
input: inputs.directories.test.contents
|
|
path: "test.txt"
|
|
} & {
|
|
contents: "local directory"
|
|
}
|
|
}
|