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

17 lines
304 B
CUE
Raw Normal View History

2022-04-19 22:45:36 +02:00
package rust
import (
"dagger.io/dagger"
"universe.dagger.io/x/contact@kjuulh.io/rust"
)
dagger.#Plan & {
2022-04-20 17:52:26 +02:00
client: filesystem: "./data/hello": read: contents: dagger.#FS
2022-04-19 22:45:36 +02:00
2022-04-20 17:52:26 +02:00
actions: test: {
publish: rust.#Publish & {
source: client.filesystem."./data/hello".read.contents
}
}
2022-04-19 22:45:36 +02:00
}