20 lines
318 B
CUE
20 lines
318 B
CUE
|
package lua
|
||
|
|
||
|
import (
|
||
|
"dagger.io/dagger"
|
||
|
"universe.dagger.io/x/teddylear@protonmail.com/lua"
|
||
|
)
|
||
|
|
||
|
dagger.#Plan & {
|
||
|
client: filesystem: "./data/hello": read: contents: dagger.#FS
|
||
|
|
||
|
actions: test: {
|
||
|
simple: {
|
||
|
fmtCheck: lua.#StyluaCheck & {
|
||
|
source: client.filesystem."./data/hello".read.contents
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|