Dagger
Search

scorecard

This module provides a function to calculate the scorecard for a given repository.

Installation

dagger install github.com/tsirysndr/daggerverse/scorecard@e8bed26dfefaaf4ef3d00958965575131f34c69c

Entrypoint

Return Type
Scorecard
Example
func (m *myModule) example() *Scorecard  {
	return dag.
			Scorecard()
}
@function
def example() -> dag.Scorecard:
	return (
		dag.scorecard()
	)
@func()
example(): Scorecard {
	return dag
		.scorecard()
}

Types

Scorecard

calc()

Calculates the scorecard for a given repository.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
repoString !-No description provided
formatString -No description provided
checksString -No description provided
tokenSecret -No description provided
Example
dagger -m github.com/tsirysndr/daggerverse/scorecard@e8bed26dfefaaf4ef3d00958965575131f34c69c call \
 calc --repo string
func (m *myModule) example(ctx context.Context, repo string) string  {
	return dag.
			Scorecard().
			Calc(ctx, repo)
}
@function
async def example(repo: str) -> str:
	return await (
		dag.scorecard()
		.calc(repo)
	)
@func()
async example(repo: string): Promise<string> {
	return dag
		.scorecard()
		.calc(repo)
}