rework pipeline
This commit is contained in:
22
pkg/tasks/golang/test.go
Normal file
22
pkg/tasks/golang/test.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package golang
|
||||
|
||||
import (
|
||||
"context"
|
||||
"log"
|
||||
|
||||
"dagger.io/dagger"
|
||||
)
|
||||
|
||||
func Test(ctx context.Context, container *dagger.Container) error {
|
||||
log.Printf("testing: image")
|
||||
c := container.Exec(dagger.ContainerExecOpts{
|
||||
Args: []string{"go", "test", "./..."},
|
||||
})
|
||||
|
||||
_, err := c.ExitCode(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user