forked from Glubus/Rhythm-Open-Exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
43 lines (32 loc) · 632 Bytes
/
justfile
File metadata and controls
43 lines (32 loc) · 632 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
43
# Justfile for rhythm-open-exchange
# Use PowerShell on Windows
set shell := ["pwsh", "-c"]
# Default recipe
default: qa
# Run all quality assurance checks (mimics CI pipeline)
qa: check fmt clippy test
@echo "✓ All QA checks passed!"
# Check compilation
check:
cargo check --all-targets
# Format check
fmt:
cargo fmt --check
# Clippy lints
clippy:
cargo clippy --all-targets -- -D warnings
# Run tests
test:
cargo test
# Format code (fix)
fix-fmt:
cargo fmt
# Run benchmarks
bench:
cargo bench
# Build release
build:
cargo build --release
# Clean build artifacts
clean:
cargo clean