We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9433863 commit 667e697Copy full SHA for 667e697
Makefile
@@ -6,6 +6,13 @@ GREEN := \033[0;32m
6
YELLOW := \033[1;33m
7
NC := \033[0m # No Color
8
9
+# Default target - run both lint and test
10
+all: lint test
11
+
12
+# Run tests in idp_common_pkg directory
13
+test:
14
+ $(MAKE) -C lib/idp_common_pkg test
15
16
# Run both linting and formatting in one command
17
lint: ruff-lint format
18
0 commit comments