Unverified Commit 1893f543 authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

workflows/check-format: run on all files

This was run on .nix files only, but we recently added keep-sorted,
editorconfig-checker and actionlint to treefmt, so CI needs to check all
files instead.
parent 8b49874f
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -63,10 +63,7 @@ let
      fs = pkgs.lib.fileset;
      nixFilesSrc = fs.toSource {
        root = ../.;
        fileset = fs.difference (fs.unions [
          (fs.fileFilter (file: file.hasExt "nix") ../.)
          ../.git-blame-ignore-revs
        ]) (fs.maybeMissing ../.git);
        fileset = fs.difference ../. (fs.maybeMissing ../.git);
      };
    in
    {