From 1893f5439e495a4cd301aedd2acf45903cdb6ea7 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Tue, 13 May 2025 08:24:25 +0200 Subject: [PATCH] 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. --- ci/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ci/default.nix b/ci/default.nix index 619580035392..dd39e082a6fb 100644 --- a/ci/default.nix +++ b/ci/default.nix @@ -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 {