1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-22 23:45:24 +00:00

Fix: change lint order to avoid file changes notice

This commit is contained in:
loyalsoldier 2020-09-03 11:33:23 +08:00
parent d9f50f8433
commit 44d58295bf
No known key found for this signature in database
GPG Key ID: 23829BBC1ACF2C90

View File

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