this repo has no description
1# list available commands
2@list:
3 just --list
4
5# run CI locally
6@ci:
7 act
8
9# run all checks
10check: fmt test audit
11 cargo clippy
12 pre-commit run --all-files --show-diff-on-failure
13 nix flake check
14
15# format everything
16@fmt:
17 just --fmt --unstable
18 cargo fmt --all
19
20# run tests
21test:
22 cargo nextest run
23
24# run security audit on dependencies
25audit:
26 cargo audit