forked from rust-nostr/nostr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
executable file
·41 lines (31 loc) · 774 Bytes
/
justfile
File metadata and controls
executable file
·41 lines (31 loc) · 774 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
#!/usr/bin/env just --justfile
set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
[private]
default:
@just --list
# Execute the pre-commit checks
precommit: fmt check-crates check-docs
# Execute continuous integration (CI) checks
ci: check-fmt check-crates check-docs
# Format the entire Rust code
fmt:
@bash contrib/scripts/fmt.sh
# Check if the Rust code is formatted
[private]
check-fmt:
@bash contrib/scripts/fmt.sh check
# Check all the crates
[private]
check-crates:
@bash contrib/scripts/check-crates.sh
# Check Rust docs
[private]
check-docs:
@bash contrib/scripts/check-docs.sh
# Release rust crates
[confirm]
release:
cargo +stable publish --workspace
# Run benches (unstable)
bench:
RUSTFLAGS='--cfg=bench' cargo +nightly bench