Skip to content

Commit 6498311

Browse files
committed
add clean up step to makefile
1 parent 2f47e1c commit 6498311

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
.PHONY: clean
2+
3+
clean:
4+
rm -rf build dist *.egg-info
5+
16
test:
27
uv run pytest
38

@@ -17,5 +22,7 @@ build:
1722
doc:
1823
cd docs && $(MAKE) html
1924

20-
.PHONY:
25+
all: clean test spell lint format build doc
26+
27+
2128

0 commit comments

Comments
 (0)