diff options
| author | seth <[email protected]> | 2024-07-05 07:01:21 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-07-09 15:38:51 -0400 |
| commit | be286a453d1902af09431f28a5a02a8c00a954ea (patch) | |
| tree | e0b774db2066c08a095ca827c14ccc96d6654b18 /checks.nix | |
| parent | 1f7efe32e4dd69db644568a0a1d36cd01cfd6233 (diff) | |
tree-wide: move dev outputs to dev/
Diffstat (limited to 'checks.nix')
| -rw-r--r-- | checks.nix | 42 |
1 files changed, 0 insertions, 42 deletions
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 - ''; - }; - }; -} |
