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/pkg/universe.dagger.io/x/contact@kjuulh.io/rust/test/publish.cue
2022-04-20 17:52:26 +02:00

17 lines
304 B
CUE

package rust
import (
"dagger.io/dagger"
"universe.dagger.io/x/contact@kjuulh.io/rust"
)
dagger.#Plan & {
client: filesystem: "./data/hello": read: contents: dagger.#FS
actions: test: {
publish: rust.#Publish & {
source: client.filesystem."./data/hello".read.contents
}
}
}