aboutsummaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rwxr-xr-xscript/build4
-rwxr-xr-xscript/test3
2 files changed, 7 insertions, 0 deletions
diff --git a/script/build b/script/build
new file mode 100755
index 0000000..980a1a2
--- /dev/null
+++ b/script/build
@@ -0,0 +1,4 @@
+#!/bin/bash
+
+go get -d -v ./...
+go build -v ./...
diff --git a/script/test b/script/test
new file mode 100755
index 0000000..ff2d632
--- /dev/null
+++ b/script/test
@@ -0,0 +1,3 @@
+script/build
+go fmt ./...
+go test -v ./...
bgstack15