Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/purpleclay/daggerverse/shellcheck/tests@14c1374e5878f082939aab575c36cdad19920e0d

Entrypoint

Return Type
Tests
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@14c1374e5878f082939aab575c36cdad19920e0d call \
func (m *myModule) example() *Tests  {
	return dag.
			Tests()
}
@function
def example() -> dag.Tests:
	return (
		dag.tests()
	)
@func()
example(): Tests {
	return dag
		.tests()
}

Types

Tests 🔗

allTests() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@14c1374e5878f082939aab575c36cdad19920e0d call \
 all-tests
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			AllTests(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.all_tests()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.allTests()
}

checkValidFile() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@14c1374e5878f082939aab575c36cdad19920e0d call \
 check-valid-file
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			CheckValidFile(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.check_valid_file()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkValidFile()
}

checkInvalidFile() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@14c1374e5878f082939aab575c36cdad19920e0d call \
 check-invalid-file
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			CheckInvalidFile(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.check_invalid_file()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkInvalidFile()
}

checkInvalidFileWithInclude() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@14c1374e5878f082939aab575c36cdad19920e0d call \
 check-invalid-file-with-include
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			CheckInvalidFileWithInclude(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.check_invalid_file_with_include()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkInvalidFileWithInclude()
}

checkInvalidFileWithExclude() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@14c1374e5878f082939aab575c36cdad19920e0d call \
 check-invalid-file-with-exclude
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			CheckInvalidFileWithExclude(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.check_invalid_file_with_exclude()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkInvalidFileWithExclude()
}