-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustfile
More file actions
31 lines (31 loc) · 780 Bytes
/
Justfile
File metadata and controls
31 lines (31 loc) · 780 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
format:
rumdl fmt .
taplo fmt
cargo +nightly fmt --all
fix:
rumdl check --fix .
lint:
typos
rumdl check .
taplo fmt --check
cargo +nightly fmt --all -- --check
cargo +nightly clippy --all -- -D warnings
cargo machete
just build-docs
test:
cargo nextest run --workspace --all-features
bdd:
cargo test -p hpx-dl --test cucumber --all-features
test-all: test bdd
build-docs:
RUSTDOCFLAGS="-D warnings" cargo doc --workspace --no-deps --document-private-items --all-features
test-coverage:
cargo tarpaulin --all-features --workspace --timeout 300
check-feature:
cargo hack check --each-feature --no-dev-deps --exclude-no-default-features
check-cn:
rg --line-number --column "\p{Han}"
# Full CI check
ci: lint test
publish:
cargo publish --workspace