diff options
Diffstat (limited to 'checks.nix')
| -rw-r--r-- | checks.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/checks.nix b/checks.nix new file mode 100644 index 0000000..5ccc308 --- /dev/null +++ b/checks.nix @@ -0,0 +1,21 @@ +{inputs, ...}: { + perSystem = { + lib, + pkgs, + ... + }: { + checks = { + inherit + (inputs.flake-checks.lib.mkChecks { + root = ../.; + inherit pkgs; + }) + actionlint + alejandra + deadnix + editorconfig + statix + ; + }; + }; +} |
