Skip to content

Commit c396650

Browse files
authored
feat: ✨ add recipe to justfile template to (re)build the data package (#77)
# Description Add recipe that will run the `main.py` file, and include it into the `run-all` recipe. This PR needs a quick review.
1 parent 4607b4b commit c396650

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

template/justfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
just --list --unsorted
33

44
# Run all build-related recipes in the justfile
5-
run-all: install-deps format-python check-python check-spelling check-commits
5+
run-all: install-deps format-python check-python check-spelling check-commits build
6+
67

78
# Install the pre-commit hooks
89
install-precommit:
@@ -41,3 +42,7 @@ check-commits:
4142
# Check for spelling errors in files
4243
check-spelling:
4344
uv run typos
45+
46+
# Re-build the data package
47+
build:
48+
uv run main.py

0 commit comments

Comments
 (0)