Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/gh/tests@4acfb2d50bdbada0f72416b9f3df0b7b209dc0ba

Entrypoint

Return Type
Tests !
Arguments
NameTypeDefault ValueDescription
githubTokenSecret -No description provided
Example
func (m *myModule) example() *Tests  {
	return dag.
			Tests()
}

Types

Tests 🔗

gitHubToken() 🔗

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

all() 🔗

All executes all tests.

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

help() 🔗

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

clone() 🔗

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

withGitExec() 🔗

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