summaryrefslogtreecommitdiff
path: root/nix/dev/checks.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-04-21 19:49:14 +0000
committerGitHub <[email protected]>2024-04-21 19:49:14 +0000
commitf6e1aa350d6b23a4ffb63fc859c89b79ec6ce8d0 (patch)
treea1c8940feba0f2922cc18a958594c12b622e5efd /nix/dev/checks.nix
parentae1dc52060791990f994df6ecfd4960e6ff3fe5c (diff)
nix: remove subflake (#174)
Diffstat (limited to 'nix/dev/checks.nix')
-rw-r--r--nix/dev/checks.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/nix/dev/checks.nix b/nix/dev/checks.nix
deleted file mode 100644
index 1d65625..0000000
--- a/nix/dev/checks.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- perSystem = {
- lib,
- pkgs,
- ...
- }: {
- checks = {
- actionlint = pkgs.runCommand "check-actionlint" {} ''
- ${lib.getExe pkgs.actionlint} ${../../.github/workflows}/*
- touch $out
- '';
-
- editorconfig = pkgs.runCommand "check-editorconfig" {} ''
- cd ${../../.}
- ${lib.getExe pkgs.editorconfig-checker} \
- -exclude '.git' .
-
- touch $out
- '';
-
- statix = pkgs.runCommand "check-statix" {} ''
- ${lib.getExe pkgs.statix} check ${../../.}
- touch $out
- '';
- };
- };
-}