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/olli.janatuinen@gmail.com/dotnet/test/test.cue

16 lines
301 B
CUE
Raw Normal View History

package dotnet
import (
"dagger.io/dagger"
"universe.dagger.io/x/olli.janatuinen@gmail.com/dotnet"
)
dagger.#Plan & {
client: filesystem: "./data": read: contents: dagger.#FS
actions: test: dotnet.#Test & {
source: client.filesystem."./data".read.contents
package: "./Greeting.Tests"
}
}