Skip to content

Commit 5af28a9

Browse files
committed
feat(Makefile): add Makefile to streamline development tasks for testing, formatting, linting, and type checking
1 parent 66c77cf commit 5af28a9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: test format lint typecheck check
2+
3+
test:
4+
pytest
5+
6+
format:
7+
black .
8+
9+
lint:
10+
ruff check .
11+
12+
typecheck:
13+
mypy mcp_shell_server tests
14+
15+
# Run all checks required before pushing
16+
check: format lint typecheck test

0 commit comments

Comments
 (0)