From 8bdf05dae41ba580d19578ba8d0d9360f39bba4a Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Thu, 30 Jul 2020 13:28:27 -0500 Subject: [PATCH] Add ./hack/test-unit.sh. Our unit test command is going to get slighly more complex in a future revision. This should let us avoid having to sync the CI pipeline definition so many times. Signed-off-by: Matt Moyer --- hack/test-unit.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 hack/test-unit.sh diff --git a/hack/test-unit.sh b/hack/test-unit.sh new file mode 100755 index 00000000..734d01eb --- /dev/null +++ b/hack/test-unit.sh @@ -0,0 +1,4 @@ +#!/bin/bash +set -e + +go test -race ./...