From be286a453d1902af09431f28a5a02a8c00a954ea Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 5 Jul 2024 07:01:21 -0400 Subject: tree-wide: move dev outputs to dev/ --- checks.nix | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 checks.nix (limited to 'checks.nix') diff --git a/checks.nix b/checks.nix deleted file mode 100644 index 56c5038..0000000 --- a/checks.nix +++ /dev/null @@ -1,42 +0,0 @@ -{ - perSystem = - { pkgs, ... }: - { - checks = { - check-formatting = - pkgs.runCommand "check-formatting" { nativeBuildInputs = [ pkgs.nixfmt-rfc-style ]; } - '' - cd ${./.} - - echo "running nixfmt..." - nixfmt --check . - - touch $out - ''; - - check-lint = - pkgs.runCommand "check-lint" - { - nativeBuildInputs = [ - pkgs.actionlint - pkgs.deadnix - pkgs.statix - ]; - } - '' - cd ${./.} - - echo "running actionlint..." - actionlint ./.github/workflows/* - - echo "running deadnix..." - deadnix --fail - - echo "running statix..." - statix check . - - touch $out - ''; - }; - }; -} -- cgit v1.2.3