Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/gh/tests@1cbaebaf63c22ea183f8e4b4d05a0e7952559434

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)
}