Skip to content

Commit

Permalink
chore: add descriptions to justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dj95 committed Sep 16, 2024
1 parent dfe500d commit ae36ffa
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
# Default recipe, when nothing's selected
[private]
default:
just --choose

# Run benchmarks and compare to previous runs.
bench:
cargo bench --features=bench

# Build zjstatus with the tracing feature enabled.
build:
cargo build --features tracing

# Build zjstatus with tracing and start a zellij session with the dev layout.
run: build
zellij -l ./plugin-dev-workspace.kdl -s zjstatus-dev

# Watch and run tests with nextest.
test:
cargo watch -x "nextest run --lib"

# Lint with clippy and cargo audit.
lint:
cargo clippy --all-targets --all-features
cargo audit

# Create and push a new release version.
release version:
cargo set-version {{version}}
direnv exec . cargo build --release
Expand Down

0 comments on commit ae36ffa

Please sign in to comment.