ci
No long description provided.
Installation
dagger install github.com/z5labs/devex/ci@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318Entrypoint
Return Type
Ci Example
dagger -m github.com/z5labs/devex/ci@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 call \
func (m *MyModule) Example() *dagger.Ci {
return dag.
Ci()
}@function
def example() -> dagger.Ci:
return (
dag.ci()
)@func()
example(): Ci {
return dag
.ci()
}Types
Ci 🔗
test() 🔗
Test runs every daggerverse module’s tests/All() check in parallel.
Return Type
Void ! Example
dagger -m github.com/z5labs/devex/ci@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 call \
testfunc (m *MyModule) Example(ctx context.Context) {
return dag.
Ci().
Test(ctx)
}@function
async def example() -> None:
return await (
dag.ci()
.test()
)@func()
async example(): Promise<void> {
return dag
.ci()
.test()
}