load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "lift", srcs = [ "config.go", "doc.go", ], importpath = "edge-infra.dev/pkg/f8n/warehouse/lift", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/warehouse/cluster", "//pkg/lib/build/git", "@in_gopkg_yaml_v3//:yaml_v3", ], ) go_test( name = "lift_test", srcs = ["config_test.go"], data = glob(["testdata/**"]), embed = [":lift"], deps = [ "//pkg/lib/cli/sh", "@com_github_stretchr_testify//assert", "@in_gopkg_yaml_v3//:yaml_v3", "@io_bazel_rules_go//go/tools/bazel:go_default_library", ], )