From 25148db8b317a4c82816624b2ea06f601bde547a Mon Sep 17 00:00:00 2001 From: oscollabus Date: Sun, 20 Mar 2022 17:15:01 +0200 Subject: [PATCH] unit tests: Add make check (#365) In order to detect that we don't miss updating files, with make generate, add make check to the unit tests job. Signed-off-by: Or Shoval --- automation/check-patch.unit-test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/automation/check-patch.unit-test.sh b/automation/check-patch.unit-test.sh index 74b711ba3..ced055aaa 100755 --- a/automation/check-patch.unit-test.sh +++ b/automation/check-patch.unit-test.sh @@ -11,6 +11,7 @@ main() { trap teardown EXIT SIGINT SIGTERM SIGSTOP make all + make check make test }