Skip to content

Commit 321a049

Browse files
authored
Merge pull request #43 from zkarpinski/f/add-makefile
Add Makefile
2 parents fcc007c + 9a1f866 commit 321a049

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Makefile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Makefile
2+
# https://news.ycombinator.com/item?id=35328220
3+
.PHONY: setup
4+
setup:
5+
curl -sSL https://install.python-poetry.org | python3 -
6+
poetry install
7+
8+
.PHONY: lint
9+
lint:
10+
black .
11+
12+
13+
.PHONY: build
14+
build:
15+
poetry install
16+
17+
test:
18+
poetry run pytest

0 commit comments

Comments
 (0)