checks-test
No long description provided.
Installation
dagger install github.com/marcosnils/checks-test@db5e508fd8749454e479d431ba26b9f3f8a96fd3Entrypoint
Return Type
ChecksTest !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| secret | Secret | - | No description provided |
Example
dagger -m github.com/marcosnils/checks-test@db5e508fd8749454e479d431ba26b9f3f8a96fd3 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@db5e508fd8749454e479d431ba26b9f3f8a96fd3 call \
check-matiasfunc (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()
}