Add drone
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-10-29 18:36:00 +02:00
parent d6d98c2ce8
commit bd7574cd97
4 changed files with 50 additions and 0 deletions

19
ci/main.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"context"
"log"
"git.front.kjuulh.io/kjuulh/dagger-go/pkg/cli"
"github.com/spf13/cobra"
)
func main() {
if err := cli.Build(
func(cmd *cobra.Command) {},
func(ctx context.Context) error {
return nil
}); err != nil {
log.Fatal(err)
}
}