From 9b3e1de6e5caeb285b9c33e98c3f0ee3ca7450b5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Dec 2025 15:09:22 +0000 Subject: [PATCH] Fix nix fmt command to include **/*.nix argument Co-authored-by: Jyumpp <11142390+Jyumpp@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 708d457..4b3b2f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,9 +51,9 @@ jobs: - name: Check formatting run: | - nix fmt + nix fmt **/*.nix if ! git diff --quiet; then - echo "::error::Code is not formatted. Please run 'nix fmt' locally." + echo "::error::Code is not formatted. Please run 'nix fmt **/*.nix' locally." git diff exit 1 fi