forked from neo4j-labs/neo4rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
42 lines (33 loc) · 616 Bytes
/
justfile
File metadata and controls
42 lines (33 loc) · 616 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# List available recipes
default:
@just --list --unsorted
# Run a lox script
run:
cargo run
# Compile and lint checking
check:
cargo check
cargo clippy
# Build the binary
build:
cargo build --release
# Run all tests
test:
cargo test
# Run all tests with nextest
nextest:
cargo nextest run
# Continuously test
ctest:
cargo watch -x test
# Continuously run nextest
cntest:
cargo watch -x 'nextest run'
# Continuously test with nvim integration
ltest:
cargo watch -x 'ltest -- --nocapture'
# aliases
alias c := check
alias b := build
alias t := test
alias nt := nextest