···39394040# see if code is formatted
4141nix run github:vic/checkmate#treefmt -- --ci $PWD
4242-````
4242+```
43434444### Running nix-unit tests locally
45454646```shell
4747-nix run github:vic/checkmate#check-nix-unit --override-input target path:$PWD -L
4747+# Since nix-unit runs on a sandbox the following will not work (probably a nix-unit issue?)
4848+# nix run github:vic/checkmate#check-nix-unit --override-input target path:$PWD -L
4949+5050+# Instead you'll need to have to make a commit and run: (--refresh ensures you test the latest commit)
5151+nix run github:vic/checkmate#check-nix-unit --override-input target git:$PWD -L --refresh
4852```
49535054### CI Usage
···6973As a fully working example, see:
70747175https://github.com/vic/import-tree
7676+````