Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.PHONY: test lint release

# Run unit tests with pytest
test:
pytest

# Lint the codebase using flake8 and pydocstyle
lint:
flake8 .
pydocstyle faster_llm

# Publish a new release to PyPI using poetry
release:
poetry publish --build
18 changes: 18 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: '3'

tasks:
test:
desc: Run the unit test suite
cmds:
- pytest

lint:
desc: Lint the codebase
cmds:
- flake8 .
- pydocstyle faster_llm

release:
desc: Publish a new release via Poetry
cmds:
- poetry publish --build
Loading