Skip to content

Commit 0a05a8d

Browse files
authored
Merge pull request #27 from imbue-ai/danver/add-justfile
Add a justfile
2 parents 51a9766 + de48748 commit 0a05a8d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

justfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
default: help
2+
3+
help:
4+
@just --list
5+
6+
# Install binary to cargo bin path
7+
install:
8+
cargo install --path .
9+
10+
# Build the project
11+
build:
12+
cargo build
13+
14+
# Run tests
15+
test:
16+
cargo nextest run
17+
18+
test-modal:
19+
cargo run -- -c offload-modal.toml run

0 commit comments

Comments
 (0)