Skip to content

Commit

Permalink
added Makefile for automating common tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTimperley committed Jul 10, 2024
1 parent b753d02 commit 54f09e5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.PHONY: all check fix install publish test type lint

all: install check

fix:
poetry run ruff check --fix src

lint:
poetry run ruff check src

test:
poetry run pytest

type:
poetry run mypy src

install:
poetry install --with dev

publish:
poetry publish --build

check: lint test type

0 comments on commit 54f09e5

Please sign in to comment.