github.com/actions-on-google/gactions@v3.2.0+incompatible/cmd/gactions/cli/push/BUILD.bazel (about) 1 load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 load("@bazel_gazelle//:def.bzl", "gazelle") 3 4 package(default_visibility = ["//visibility:public"]) 5 6 # gazelle:prefix github.com/actions-on-google/gactions/cmd/gactions/cli/push 7 gazelle(name = "gazelle") 8 9 test_suite( 10 name = "all_tests", 11 tags = ["-notwindows"], 12 ) 13 14 go_library( 15 name = "push", 16 srcs = ["push.go"], 17 importpath = "github.com/actions-on-google/gactions/cmd/gactions/cli/push", 18 deps = [ 19 "//api:sdk", 20 "//log", 21 "//project", 22 "//project:studio", 23 "@com_github_spf13_cobra//:go_default_library", 24 ], 25 ) 26 27 go_test( 28 name = "push_test", 29 size = "small", 30 srcs = ["push_test.go"], 31 embed = [":push"], 32 tags = ["notwindows"], 33 deps = [ 34 "//project", 35 "//project:studio", 36 "@com_github_spf13_cobra//:go_default_library", 37 ], 38 )