Skip to content

Commit f929a0d

Browse files
committed
feat(build): add Makefile
1 parent e3695ca commit f929a0d

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+
.DEFAULT_GOAL := check
2+
3+
check:
4+
python3 -m ruff format --check
5+
mypy SideBot
6+
7+
run:
8+
python3 -m SideBot
9+
10+
install:
11+
python3 -m pip install -e "."
12+
13+
install/dev:
14+
python3 -m pip install -e ".[dev]"
15+
16+
.PHONY := check run install install/dev

0 commit comments

Comments
 (0)