tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/gh/tests@03155333419146ac10711b1cc4d8eabe6a3f5671Entrypoint
Return Type
Tests !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| githubToken | Secret | - | No description provided | 
Example
dagger -m github.com/sagikazarmark/daggerverse/gh/tests@03155333419146ac10711b1cc4d8eabe6a3f5671 call \
func (m *MyModule) Example() *dagger.Tests  {
	return dag.
			Tests()
}@function
def example() -> dagger.Tests:
	return (
		dag.tests()
	)@func()
example(): Tests {
	return dag
		.tests()
}Types
Tests 🔗
gitHubToken() 🔗
Return Type
Secret !Example
dagger -m github.com/sagikazarmark/daggerverse/gh/tests@03155333419146ac10711b1cc4d8eabe6a3f5671 call \
 git-hub-tokenfunc (m *MyModule) Example() *dagger.Secret  {
	return dag.
			Tests().
			GitHubToken()
}@function
def example() -> dagger.Secret:
	return (
		dag.tests()
		.git_hub_token()
	)@func()
example(): Secret {
	return dag
		.tests()
		.gitHubToken()
}all() 🔗
All executes all tests.
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/gh/tests@03155333419146ac10711b1cc4d8eabe6a3f5671 call \
 allfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			All(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.all()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.all()
}help() 🔗
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/gh/tests@03155333419146ac10711b1cc4d8eabe6a3f5671 call \
 helpfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Help(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.help()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.help()
}clone() 🔗
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/gh/tests@03155333419146ac10711b1cc4d8eabe6a3f5671 call \
 clonefunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Clone(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.clone()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.clone()
}withGitExec() 🔗
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/gh/tests@03155333419146ac10711b1cc4d8eabe6a3f5671 call \
 with-git-execfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			WithGitExec(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.with_git_exec()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.withGitExec()
}