Skip to content

Commit

Permalink
Add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Man Parvesh Singh Randhawa committed Oct 7, 2024
1 parent 7561fda commit 4456ba5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.ONESHELL: # Applies to every targets in the file!

poetry-build:
@echo "Building package..."
poetry build

test:
@echo "Running tests..."
poetry run pytest

site-serve:
@echo "Building site..."
mkdocs serve -f docs/mkdocs.yml

site-deploy:
@echo "Deploying site..."
mkdocs gh-deploy -f docs/mkdocs.yml
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yodapa"
version = "0.3.0"
version = "0.3.1"
description = "Personal Assistant on the command line"
authors = ["Man Parvesh Singh Randhawa <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 4456ba5

Please sign in to comment.