1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3go_library( 4 name = "team", 5 srcs = ["team.go"], 6 importpath = "edge-infra.dev/pkg/tools/team", 7 visibility = ["//visibility:public"], 8 deps = ["@io_k8s_sigs_yaml//:yaml"], 9) 10 11go_test( 12 name = "team_test", 13 srcs = ["team_test.go"], 14 data = glob(["testdata/**"]), 15 embed = [":team"], 16 deps = ["@com_github_stretchr_testify//assert"], 17)