summaryrefslogtreecommitdiffhomepage
path: root/tools/github/reviver/BUILD
blob: fc54782f5045833f293016e2df7932725b123acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "reviver",
    srcs = [
        "github.go",
        "reviver.go",
    ],
    nogo = False,
    visibility = [
        "//tools/github:__subpackages__",
    ],
    deps = ["@com_github_google_go_github_v32//github:go_default_library"],
)

go_test(
    name = "reviver_test",
    size = "small",
    srcs = [
        "github_test.go",
        "reviver_test.go",
    ],
    library = ":reviver",
    nogo = False,
)