...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "git",
5 srcs = ["git.go"],
6 importpath = "edge-infra.dev/pkg/lib/build/git",
7 visibility = ["//visibility:public"],
8 deps = ["//pkg/lib/cli/sh"],
9)
10
11go_test(
12 name = "git_test",
13 srcs = ["git_test.go"],
14 embed = [":git"],
15 deps = [
16 "//pkg/lib/build/bazel",
17 "//pkg/lib/cli/sh",
18 "@com_github_stretchr_testify//assert",
19 "@com_github_stretchr_testify//require",
20 ],
21)
View as plain text