From d34f1c819df45433297d49f77413772d08c543cd Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Sun, 9 Aug 2020 14:32:09 -0700 Subject: [PATCH] CI: add shellcheck of bats files Currently all the shellcheck warnings are fixed, and we'd like it to stay thay way. So, add shellcheck call to validate target in Makefile, which is run on Travis CI. Signed-off-by: Kir Kolyshkin --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 2b9c4c087..916a5cc24 100644 --- a/Makefile +++ b/Makefile @@ -121,6 +121,7 @@ validate: script/validate-gofmt script/validate-c $(GO) vet $(MOD_VENDOR) ./... + shellcheck tests/integration/*.bats ci: validate test release