···11-# list available commands
22-@list:
33- just --list
44-55-# run CI locally
66-@ci:
77- act
88-99-# run all checks
1010-check: fmt test audit
1111- cargo clippy
1212- pre-commit run --all-files --show-diff-on-failure
1313- nix flake check
1414-1515-# format everything
1616-@fmt:
1717- just --fmt --unstable
1818- cargo fmt --all
1919-2020-# run tests
2121-test:
2222- cargo nextest run
2323-2424-# run security audit on dependencies
2525-audit:
2626- cargo audit