runtime/local: add support for idiomatic folder structures (#1963)
* runtime/local: add support for idiomatic folder structures * runtime/local: add test coverage * runtime/local: increase test coverage * runtime/local: add test for empty local source * runtime/local: make entrypoint public
This commit is contained in:
4
runtime/local/test/bar/main.go
Normal file
4
runtime/local/test/bar/main.go
Normal file
@@ -0,0 +1,4 @@
|
||||
// Package main is used to test the local runtime, specifically the entrypoint function
|
||||
package main
|
||||
|
||||
func main() {}
|
4
runtime/local/test/cmd/test/main.go
Normal file
4
runtime/local/test/cmd/test/main.go
Normal file
@@ -0,0 +1,4 @@
|
||||
// Package main is used to test the local runtime, specifically the entrypoint function
|
||||
package main
|
||||
|
||||
func main() {}
|
1
runtime/local/test/empty/empty.go
Normal file
1
runtime/local/test/empty/empty.go
Normal file
@@ -0,0 +1 @@
|
||||
package empty
|
4
runtime/local/test/foo/cmd/bar/main.go
Normal file
4
runtime/local/test/foo/cmd/bar/main.go
Normal file
@@ -0,0 +1,4 @@
|
||||
// Package main is used to test the local runtime, specifically the entrypoint function
|
||||
package main
|
||||
|
||||
func main() {}
|
4
runtime/local/test/foo/cmd/baz/main.go
Normal file
4
runtime/local/test/foo/cmd/baz/main.go
Normal file
@@ -0,0 +1,4 @@
|
||||
// Package main is used to test the local runtime, specifically the entrypoint function
|
||||
package main
|
||||
|
||||
func main() {}
|
Reference in New Issue
Block a user