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.
This commit is contained in:
Wolfgang Walther 2025-05-13 08:24:25 +02:00
parent 8b49874f43
commit 1893f5439e
No known key found for this signature in database
GPG key ID: B39893FA5F65CAE1

View file

@ -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
{