github.com/actions-on-google/gactions@v3.2.0+incompatible/cmd/gactions/cli/ginit/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/ginit 7 gazelle(name = "gazelle") 8 9 test_suite( 10 name = "all_tests", 11 tags = ["-notwindows"], 12 ) 13 14 go_library( 15 name = "ginit", 16 srcs = ["ginit.go"], 17 importpath = "github.com/actions-on-google/gactions/cmd/gactions/cli/ginit", 18 deps = [ 19 "//api:sdk", 20 "//log", 21 "//project", 22 "@com_github_spf13_cobra//:go_default_library", 23 ], 24 ) 25 26 go_test( 27 name = "ginit_test", 28 size = "small", 29 srcs = ["ginit_test.go"], 30 embed = [":ginit"], 31 tags = ["notwindows"], 32 deps = [ 33 "//project", 34 "@com_github_spf13_cobra//:go_default_library", 35 ], 36 )