blob: 905be6528d6aadb41f8d51d7cf2e08fdefe8c426 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "travisci",
srcs = ["travisci.go"],
importpath = "go.skia.org/infra/go/travisci",
visibility = ["//visibility:public"],
deps = [
"//go/httputils",
"//go/util",
],
)
go_test(
name = "travisci_test",
srcs = ["travisci_test.go"],
embed = [":travisci"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)