blob: 30fc7c932446fccc99ac60f0c77265bbbf78ecce [file] [log] [blame]
Philipp Schrader773577f2021-12-17 23:45:39 -08001sh_binary(
2 name = "gofmt",
3 srcs = ["gofmt.sh"],
4 data = [
5 "@go_sdk//:bin/gofmt",
6 ],
7 deps = [
8 "@bazel_tools//tools/bash/runfiles",
9 ],
10)
11
12sh_binary(
13 name = "run-ci",
14 srcs = [
15 "run-ci.sh",
16 ],
17 data = [
18 ":gofmt",
19 ],
20 deps = [
21 "@bazel_tools//tools/bash/runfiles",
22 ],
23)