Skip to content

Commit f2e50d2

Browse files
committed
Add justfile
1 parent 3b4fed5 commit f2e50d2

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+
#!/usr/bin/env just --justfile
2+
3+
fmt:
4+
cargo fmt --all
5+
6+
check:
7+
cargo check --all
8+
9+
clippy:
10+
cargo clippy --all
11+
12+
test:
13+
cargo test --all
14+
15+
precommit: fmt check clippy test

0 commit comments

Comments
 (0)