Dagger
Search

scorecard

No long description provided.

Installation

dagger install github.com/tsirysndr/daggerverse/scorecard@4f4fe6967c1e389a47b7ecd01c2f01bf520386a0

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@4f4fe6967c1e389a47b7ecd01c2f01bf520386a0 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)
}