Skip to content

Commit 9f88e56

Browse files
committed
feat: Add Makefile for linting, testing, and setup tasks
1 parent 419733b commit 9f88e56

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SHELL := /bin/bash
2+
3+
export PYTHONPATH=$(shell pwd)
4+
5+
lint:
6+
uvx ruff check .
7+
8+
test:
9+
uv run pytest --cov-report term --cov-report html --cov
10+
11+
setup::
12+
uv sync --all-extras

0 commit comments

Comments
 (0)