_help:
@just --list
_default:
@echo "usage: just [command]"
# Build the project with release profile
build:
cargo build --release
# Clean the project
clean:
cargo clean
# Run tests
test:
cargo test
# Run lint checks
lint:
cargo clippy --fix --allow-dirty
cargo fmt --check
# Install the binary to the local directory
install: build
sudo install -m 755 "target/release/git-send" "/usr/local/bin/git-send"