We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef7437 commit 5056547Copy full SHA for 5056547
justfile
@@ -0,0 +1,23 @@
1
+set shell := ["bash", "-cu"]
2
+set dotenv-load := true
3
+
4
+# display a help message about available commands
5
+default:
6
+ @just --list --unsorted
7
8
9
+# run all recipes required to pass CI workflows
10
+ci:
11
+ @just fmt lint test
12
13
+# run unit tests
14
+test:
15
+ cargo nextest run --workspace -E "kind(lib) | kind(bin) | kind(proc-macro)"
16
17
+# run collection of clippy lints
18
+lint:
19
+ RUSTFLAGS="-D warnings" cargo clippy --examples --tests --benches --all-features --locked
20
21
+# format the code using the nightly rustfmt (as we use some nightly lints)
22
+fmt:
23
+ cargo +nightly fmt --all
0 commit comments