We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48e1a5f commit efcc3a5Copy full SHA for efcc3a5
Taskfile.yaml
Taskfile.yml
justfile
@@ -0,0 +1,33 @@
1
+# Default recipe
2
+default:
3
+ @just --list
4
+
5
+# Build the project
6
+build:
7
+ cargo build
8
9
+# Run the project
10
+run:
11
+ cargo run
12
13
+# Run tests
14
+test:
15
+ cargo test
16
17
+# Format code
18
+fmt:
19
+ cargo fmt
20
21
+# Run clippy
22
+clippy:
23
+ cargo clippy -- -D warnings
24
25
+# Clean build artifacts
26
+clean:
27
+ cargo clean
28
29
+# Lint: format check + clippy
30
+lint: fmt clippy
31
32
+# Check: build + test + clippy
33
+check: build test clippy
0 commit comments