Skip to content

Commit

Permalink
chore: Update justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Feb 28, 2025
1 parent cc1f98d commit cf082aa
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ default: build
@test:
cargo test

# Run benchmarks
@bench:
cargo +nightly bench

# Run the formatter
@fmt:
cargo fmt
Expand All @@ -40,6 +44,10 @@ default: build
@clippy-fix:
cargo +nightly clippy --fix --allow-dirty --allow-staged -- -D warnings

# Build the package documentation
@doc:
cargo doc

# Run the linter for GitHub Actions workflow files
@lint-github-actions:
actionlint -verbose
Expand All @@ -50,5 +58,5 @@ default: build

# Increment the version
@bump part:
bump-my-version bump {{part}}
cargo set-version --bump {{part}}
bump-my-version bump {{ part }}
cargo set-version --bump {{ part }}

0 comments on commit cf082aa

Please sign in to comment.