constellation/bazel/toolchains/BUILD.golangci.bazel
Paul Meyer f7713df833
bazel: add golangci-lint to //:check target (#1494)
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-03-23 17:27:09 +01:00

9 lines
242 B
Plaintext

genrule(
name = "golangci_lint_bin",
srcs = ["golangci-lint"],
outs = ["golangci_lint_bin_out"],
cmd = "cp $< $@", # Copy the binary to the output directory.
executable = True,
visibility = ["//visibility:public"],
)