pgtapes
Package main provides pgtapes' Dagger checks.
Installation
dagger install github.com/papercomputeco/pgtapes@b50f34920ad99c6f267d2c8dc7c2e3c1d220a8afEntrypoint
Return Type
Pgtapes !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | No description provided |
Example
dagger -m github.com/papercomputeco/pgtapes@b50f34920ad99c6f267d2c8dc7c2e3c1d220a8af call \
func (m *MyModule) Example() *dagger.Pgtapes {
return dag.
Pgtapes()
}@function
def example() -> dagger.Pgtapes:
return (
dag.pgtapes()
)@func()
example(): Pgtapes {
return dag
.pgtapes()
}Types
Pgtapes 🔗
Pgtapes provides repository checks.
test() 🔗
Test builds the image, boots PostgreSQL, and waits for it to report ready.
Return Type
Void ! Example
dagger -m github.com/papercomputeco/pgtapes@b50f34920ad99c6f267d2c8dc7c2e3c1d220a8af call \
testfunc (m *MyModule) Example(ctx context.Context) {
return dag.
Pgtapes().
Test(ctx)
}@function
async def example() -> None:
return await (
dag.pgtapes()
.test()
)@func()
async example(): Promise<void> {
return dag
.pgtapes()
.test()
}