Skip to content
Draft
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
21 changes: 21 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
system := `nix eval --offline --raw --impure --expr builtins.currentSystem`

# Quick checks (fast dev cycle feedback)
check:
nom build --no-update-lock-file '.#checks.{{ system }}.quick'

# All flake checks
check-all:
nix flake check --no-update-lock-file --log-format internal-json -v 2>&1 | nom --json

# Auto-format all files
fmt:
nix fmt

# Run tests via cargo-nextest
test:
cargo nextest run --no-tests=warn

# Run clippy lints
clippy:
cargo clippy --all-targets --all-features -- -D warnings
Loading