Fix nix fmt command to include **/*.nix argument

Co-authored-by: Jyumpp <11142390+Jyumpp@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-17 15:09:22 +00:00
parent ddefebf27e
commit 9b3e1de6e5

View File

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