Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/golangci-lint/tests@fe7d5cf696158e1d2cdd8a3b09e6fc65898c14f9

Entrypoint

Return Type
Tests
Example
func (m *myModule) example() *Tests  {
	return dag.
			Tests()
}

Types

Tests 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			All(ctx)
}

run() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Run(ctx)
}