Browse Source

Fix: change lint order to avoid file changes notice

loyalsoldier 5 years ago
parent
commit
44d58295bf
1 changed files with 10 additions and 10 deletions
  1. 10 10
      .github/workflows/linter.yml

+ 10 - 10
.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