Another project
0

Configure Feed

Select the types of activity you want to include in your feed.

1default: 2 @just --list 3 4check: 5 cargo check --workspace --all-targets --all-features 6 7build: 8 cargo build --workspace 9 10build-release: 11 cargo build --workspace --release 12 13run: 14 cargo run -p bone-app 15 16test: 17 cargo test --workspace --all-features 18 19clippy: 20 cargo clippy --workspace --all-targets --all-features -- -D warnings 21 22snap: 23 cargo insta test --workspace --all-features 24 25snap-review: 26 cargo insta review 27 28snap-accept: 29 cargo insta accept 30 31fmt: 32 cargo fmt --all 33 34fmt-check: 35 cargo fmt --all -- --check 36 37lint: fmt-check clippy