load("@io_bazel_rules_go//go:def.bzl", "go_library") load("//bazel/go:go_test.bzl", "go_test") go_library( name = "helm", srcs = ["helm.go"], importpath = "github.com/edgelesssys/constellation/v2/internal/deploy/helm", visibility = ["//:__subpackages__"], ) go_test( name = "helm_test", srcs = ["helm_test.go"], embed = [":helm"], deps = ["@com_github_stretchr_testify//assert"], )