this repo has no description
0
fork

Configure Feed

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

at 6b53ecfc94fffa562f05249eabb00968bbc67fdd 22 lines 319 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 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