diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 0204ecfb..0e3300a0 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -26,16 +26,6 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - - name: Show if need to format code - if: ${{ always() }} - run: | - filesNeedToFormat=$(go fmt ./...) - if [[ $filesNeedToFormat ]]; then - echo -e "\033[0;36m[Error] The following Go files need to be formatted:\033[0m" - echo -e "\033[0;31m$filesNeedToFormat\033[0m" - exit 1 - fi - - name: Lint *.go files if: ${{ always() }} run: | @@ -57,3 +47,13 @@ jobs: VALIDATE_JSON: false VALIDATE_MD: false VALIDATE_PROTOBUF: false + + - name: Show if need to format code + if: ${{ always() }} + run: | + filesNeedToFormat=$(go fmt ./...) + if [[ $filesNeedToFormat ]]; then + echo -e "\033[0;36m[Error] The following Go files need to be formatted:\033[0m" + echo -e "\033[0;31m$filesNeedToFormat\033[0m" + exit 1 + fi