scorecard
No long description provided.
Installation
dagger install github.com/tsirysndr/daggerverse/scorecard@5ec82c9a204d1050b848b21aac8f906dace2d9cd
Entrypoint
Return Type
Scorecard
Example
dagger -m github.com/tsirysndr/daggerverse/scorecard@5ec82c9a204d1050b848b21aac8f906dace2d9cd call \
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
Name | Type | Default Value | Description |
---|---|---|---|
repo | String ! | - | No description provided |
format | String | - | No description provided |
checks | String | - | No description provided |
token | Secret | - | No description provided |
Example
dagger -m github.com/tsirysndr/daggerverse/scorecard@5ec82c9a204d1050b848b21aac8f906dace2d9cd 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)
}