diff --git a/pre-commit.sh b/pre-commit.sh index 9824c3c4e..551c65954 100755 --- a/pre-commit.sh +++ b/pre-commit.sh @@ -30,4 +30,8 @@ echo "Running go test" go test -v ./... rc=$((rc || $?)) +echo "Testing kinflate demos" +mdrip --mode test --label test ./cmd/kinflate +rc=$((rc || $?)) + exit $rc