35 lines
478 B
Go
35 lines
478 B
Go
package examples
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"git.front.kjuulh.io/kjuulh/byg"
|
|
)
|
|
|
|
func Test(t *testing.T) {
|
|
byg.New().
|
|
Step(
|
|
"fetch resources",
|
|
byg.Step{
|
|
Execute: func(ctx byg.Context) error {
|
|
return nil
|
|
},
|
|
},
|
|
byg.Step{
|
|
Execute: func(ctx byg.Context) error {
|
|
return nil
|
|
},
|
|
},
|
|
).
|
|
Step(
|
|
"build stuff",
|
|
byg.Step{
|
|
Execute: func(ctx byg.Context) error {
|
|
return nil
|
|
},
|
|
},
|
|
).Execute(context.Background())
|
|
|
|
}
|