this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 2c4eddb8606eb7af5908146d2b84a3818a6dfd4e 26 lines 386 B view raw
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