Skip to content

Commit

Permalink
feat(build): add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
nythepegasus committed Jan 10, 2025
1 parent e3695ca commit f929a0d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.DEFAULT_GOAL := check

check:
python3 -m ruff format --check
mypy SideBot

run:
python3 -m SideBot

install:
python3 -m pip install -e "."

install/dev:
python3 -m pip install -e ".[dev]"

.PHONY := check run install install/dev

0 comments on commit f929a0d

Please sign in to comment.