6b81dc439d
Signed-off-by: Richard Jones <richard@dagger.io>
16 lines
267 B
CUE
16 lines
267 B
CUE
package go
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"universe.dagger.io/go"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
client: filesystem: "./data/hello": read: contents: dagger.#FS
|
|
|
|
actions: test: go.#Test & {
|
|
source: client.filesystem."./data/hello".read.contents
|
|
package: "./greeting"
|
|
}
|
|
}
|