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