Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/gh/tests@b249f27c0d6a2183cd368ae767fc912a09a1a40f

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