From 8462a30a6844d5aede42fe9868a23287eedc2d4f Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Wed, 3 Sep 2025 02:34:55 -0600 Subject: [PATCH] Adjust the fmt test to reveal output Signed-off-by: Jonathon Anderson --- .github/workflows/testsuite.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 933c50f2..7f336fab 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -42,7 +42,9 @@ jobs: - name: Vet Warewulf code (golang ${{ matrix.go-version }}) run: make vet - name: Check Warewulf code for formatting (golang ${{ matrix.go-version }}) - run: test "$(make -s fmt | wc -l)" == 0 + run: | + make -s fmt | tee /tmp/fmt-output + test "$(wc -l