Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Phenotype-org standard justfile

default:
@just --list

# Build workspace
build:
cargo build --workspace

# Run tests
test:
cargo test --workspace

# Lint (clippy + fmt --check)
lint:
cargo clippy --workspace -- -D warnings
cargo fmt --check

# Format code
fmt:
cargo fmt

# Security audits (cargo-deny + cargo-audit)
audit:
cargo deny check
cargo audit

# Find unused dependencies
unused:
cargo machete

# Full local CI sweep
ci: lint test audit unused

# Generate docs
docs:
cargo doc --no-deps --workspace
Loading