A flake checker (treefmt & nix-unit) for testing other flakes with zero dependencies.
0
fork

Configure Feed

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

Dont expose check as part of pkgs

+3 -4
+3 -3
README.md
··· 34 34 ### Running treefmt on your code 35 35 36 36 ```shell 37 - # see if code is formatted 38 - nix run github:vic/checkmate#check-treefmt --override-input target path:$PWD -L 39 - 40 37 # formatting your code 41 38 nix run github:vic/checkmate#treefmt -- $PWD 39 + 40 + # see if code is formatted 41 + nix run github:vic/checkmate#treefmt -- --ci $PWD 42 42 ```` 43 43 44 44 ### Running nix-unit tests locally
-1
treefmt.nix
··· 16 16 in 17 17 { 18 18 packages.treefmt = treefmt-wrapper; 19 - packages.check-treefmt = treefmt-check; 20 19 checks.checkmate-treefmt = treefmt-check; 21 20 lib.checkmate-treefmt = treefmt.config.build.check; 22 21 }