Skip to content

Commit

Permalink
added makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
alanisaac committed Oct 11, 2023
1 parent f7fa96f commit c64bb93
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions rules-engine/makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
lint:
black --check .
isort --check .
mypy .
pydocstyle .

test:
pytest .

build:
pip install -q build
python -m build

all: lint test build

0 comments on commit c64bb93

Please sign in to comment.