Skip to content

Commit bc7dc07

Browse files
committed
chore: add Justfile with build, install, test, and fmt commands
1 parent 7bb80dc commit bc7dc07

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Justfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Build all crates
2+
build:
3+
cargo build --workspace
4+
5+
# Install the CLI binary
6+
install:
7+
cargo install --path crates/llmem-cli
8+
9+
# Run all tests
10+
test:
11+
cargo test --workspace
12+
13+
# Format all code
14+
fmt:
15+
cargo fmt --all

0 commit comments

Comments
 (0)