Skip to content

Commit

Permalink
Merge pull request #43 from zkarpinski/f/add-makefile
Browse files Browse the repository at this point in the history
Add Makefile
  • Loading branch information
zkarpinski authored Mar 27, 2024
2 parents fcc007c + 9a1f866 commit 321a049
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Makefile
# https://news.ycombinator.com/item?id=35328220
.PHONY: setup
setup:
curl -sSL https://install.python-poetry.org | python3 -
poetry install

.PHONY: lint
lint:
black .


.PHONY: build
build:
poetry install

test:
poetry run pytest

0 comments on commit 321a049

Please sign in to comment.