Dagger
Search

checks-test

No long description provided.

Installation

dagger install github.com/marcosnils/checks-test@0f3dc3d7c8d3d502b8781fe4ef71094c5a79f58b

Entrypoint

Return Type
ChecksTest !
Arguments
NameTypeDefault ValueDescription
secretSecret -No description provided
Example
dagger -m github.com/marcosnils/checks-test@0f3dc3d7c8d3d502b8781fe4ef71094c5a79f58b call \
func (m *MyModule) Example() *dagger.ChecksTest  {
	return dag.
			ChecksTest()
}
@function
def example() -> dagger.ChecksTest:
	return (
		dag.checks_test()
	)
@func()
example(): ChecksTest {
	return dag
		.checksTest()
}

Types

ChecksTest 🔗

checkMatias() 🔗

Return Type
ChecksTestCheckStatus !
Example
dagger -m github.com/marcosnils/checks-test@0f3dc3d7c8d3d502b8781fe4ef71094c5a79f58b call \
 check-matias
func (m *MyModule) Example() *dagger.ChecksTestCheckStatus  {
	return dag.
			ChecksTest().
			CheckMatias()
}
@function
def example() -> dagger.ChecksTestCheckStatus:
	return (
		dag.checks_test()
		.check_matias()
	)
@func()
example(): ChecksTestCheckStatus {
	return dag
		.checksTest()
		.checkMatias()
}

ChecksTestCheckStatus 🔗