Dagger
Search

codecov

No long description provided.

Installation

dagger install github.com/fluent-ci-templates/codecov-pipeline@a16ea3799ee4cd5da182a4d44ed2cca54691e289

Entrypoint

Return Type
Codecov
Example
func (m *myModule) example() *Codecov  {
	return dag.
			Codecov()
}

Types

Codecov 🔗

upload() 🔗

Uploads code coverage to Codecov

Return Type
String !
Arguments
NameTypeDefault ValueDescription
srcDirectory !-No description provided
tokenSecret !-No description provided
Example
func (m *myModule) example(ctx context.Context, src *Directory, token *Secret) string  {
	return dag.
			Codecov().
			Upload(ctx, src, token)
}