mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
fix(ci/golangci): fix golangcl-lint git push and apply format code on Push (#4077)
This commit is contained in:
parent
3a19ee9268
commit
6ea1526b75
36
.github/workflows/before_script.sh
vendored
36
.github/workflows/before_script.sh
vendored
@ -1,6 +1,36 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
find . -name "*.go" | xargs gofmt -w
|
# Install gci
|
||||||
git diff --name-only --exit-code || if [ $? != 0 ]; then echo "Notice: gofmt check failed,please gofmt before pr." && exit 1; fi
|
echo "Installing gci..."
|
||||||
echo "gofmt check pass."
|
go install github.com/daixiang0/gci@latest
|
||||||
|
|
||||||
|
# Check if the GCI is installed successfully
|
||||||
|
if ! command -v gci &> /dev/null
|
||||||
|
then
|
||||||
|
echo "gci could not be installed. Please check your Go setup."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Use GCI to format the code
|
||||||
|
echo "Running gci to format code..."
|
||||||
|
gci write \
|
||||||
|
--custom-order \
|
||||||
|
--skip-generated \
|
||||||
|
--skip-vendor \
|
||||||
|
-s standard \
|
||||||
|
-s blank \
|
||||||
|
-s default \
|
||||||
|
-s dot \
|
||||||
|
-s "prefix(github.com/gogf/gf/v2)" \
|
||||||
|
-s "prefix(github.com/gogf/gf/cmd)" \
|
||||||
|
-s "prefix(github.com/gogf/gf/contrib)" \
|
||||||
|
-s "prefix(github.com/gogf/gf/example)" \
|
||||||
|
./
|
||||||
|
|
||||||
|
# Check the code for changes
|
||||||
|
git diff --name-only --exit-code || if [ $? != 0 ]; then echo "Notice: gci check failed, please gci before pr." && exit 1; fi
|
||||||
|
echo "gci check pass."
|
||||||
|
|
||||||
|
# Add the local domain name to `/etc/hosts`
|
||||||
|
echo "Adding local domain to /etc/hosts..."
|
||||||
sudo echo "127.0.0.1 local" | sudo tee -a /etc/hosts
|
sudo echo "127.0.0.1 local" | sudo tee -a /etc/hosts
|
61
.github/workflows/format-code-on-push.yml
vendored
Normal file
61
.github/workflows/format-code-on-push.yml
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
name: Format Code on Push
|
||||||
|
|
||||||
|
on:
|
||||||
|
push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
format-code:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
go-version: [ 'stable' ]
|
||||||
|
name: format-code-by-gci
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Golang ${{ matrix.go-version }}
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: ${{ matrix.go-version }}
|
||||||
|
- name: Install gci
|
||||||
|
run: go install github.com/daixiang0/gci@latest
|
||||||
|
- name: Run gci
|
||||||
|
run: |
|
||||||
|
gci write --custom-order \
|
||||||
|
--skip-generated \
|
||||||
|
--skip-vendor \
|
||||||
|
-s standard \
|
||||||
|
-s blank \
|
||||||
|
-s default \
|
||||||
|
-s dot \
|
||||||
|
-s "prefix(github.com/gogf/gf/v2)" \
|
||||||
|
-s "prefix(github.com/gogf/gf/cmd)" \
|
||||||
|
-s "prefix(github.com/gogf/gf/contrib)" \
|
||||||
|
-s "prefix(github.com/gogf/gf/example)" \
|
||||||
|
./
|
||||||
|
- name: Check for changes
|
||||||
|
run: |
|
||||||
|
if [[ -n "$(git status --porcelain)" ]]; then
|
||||||
|
echo "HAS_CHANGES=true" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "HAS_CHANGES=false" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
- name: Configure Git
|
||||||
|
run: |
|
||||||
|
if [[ "$HAS_CHANGES" == 'true' ]]; then
|
||||||
|
git config --global user.name "github-actions[bot]"
|
||||||
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
else
|
||||||
|
echo "HAS_CHANGES= $HAS_CHANGES "
|
||||||
|
fi
|
||||||
|
- name: Commit and push changes
|
||||||
|
run: |
|
||||||
|
if [[ "$HAS_CHANGES" == 'true' ]]; then
|
||||||
|
git add .
|
||||||
|
git commit -m "Apply gci import order changes"
|
||||||
|
git push origin ${{ github.event.pull_request.head.ref }}
|
||||||
|
else
|
||||||
|
echo "No change to commit push"
|
||||||
|
fi
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
44
.github/workflows/golangci-lint.yml
vendored
44
.github/workflows/golangci-lint.yml
vendored
@ -4,7 +4,7 @@
|
|||||||
# If a copy of the MIT was not distributed with this file,
|
# If a copy of the MIT was not distributed with this file,
|
||||||
# You can obtain one at https://github.com/gogf/gf.
|
# You can obtain one at https://github.com/gogf/gf.
|
||||||
|
|
||||||
name: GolangCI-Lint
|
name: GolangCI Lint
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
@ -26,11 +26,11 @@ on:
|
|||||||
- feat/**
|
- feat/**
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
golangci:
|
golang-ci:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [ 'stable' ]
|
go-version: [ 'stable' ]
|
||||||
name: golangci-lint
|
name: golang-ci-lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@ -39,44 +39,12 @@ jobs:
|
|||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go-version }}
|
go-version: ${{ matrix.go-version }}
|
||||||
- name: golangci-lint
|
- name: golang-ci-lint
|
||||||
uses: golangci/golangci-lint-action@v6
|
uses: golangci/golangci-lint-action@v6
|
||||||
with:
|
with:
|
||||||
# Required: specify the golangci-lint version without the patch version to always use the latest patch.
|
# Required: specify the golangci-lint version without the patch version to always use the latest patch.
|
||||||
version: v1.62.2
|
version: v1.62.2
|
||||||
only-new-issues: true
|
only-new-issues: true
|
||||||
|
skip-cache: true
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
args: --timeout 3m0s
|
args: --timeout 3m0s --config=.golangci.yml -v
|
||||||
- name: Install gci
|
|
||||||
run: go install github.com/daixiang0/gci@latest
|
|
||||||
- name: Run gci
|
|
||||||
run: |
|
|
||||||
gci write --custom-order \
|
|
||||||
--skip-generated \
|
|
||||||
--skip-vendor \
|
|
||||||
-s standard \
|
|
||||||
-s blank \
|
|
||||||
-s default \
|
|
||||||
-s dot \
|
|
||||||
-s "prefix(github.com/gogf/gf/v2)" \
|
|
||||||
-s "prefix(github.com/gogf/gf/cmd)" \
|
|
||||||
-s "prefix(github.com/gogf/gf/contrib)" \
|
|
||||||
-s "prefix(github.com/gogf/gf/example)" \
|
|
||||||
./
|
|
||||||
- name: Check for changes
|
|
||||||
# Check if the event is a push or a pull request from a forked repository
|
|
||||||
if: github.event_name == 'push'|| (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true)
|
|
||||||
run: |
|
|
||||||
if [[ -n "$(git status --porcelain)" ]]; then
|
|
||||||
echo "HAS_CHANGES=true" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "HAS_CHANGES=false" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
- name: Commit and push changes
|
|
||||||
if: env.HAS_CHANGES == 'true'
|
|
||||||
run: |
|
|
||||||
git config --global user.name "github-actions[bot]"
|
|
||||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
||||||
git add .
|
|
||||||
git commit -m "Apply gci import order changes"
|
|
||||||
git push origin HEAD:$(git rev-parse --abbrev-ref HEAD)
|
|
||||||
|
6
.github/workflows/issue-check-inactive.yml
vendored
6
.github/workflows/issue-check-inactive.yml
vendored
@ -1,12 +1,12 @@
|
|||||||
# 规则描述:每天凌晨3点(GMT+8)执行一次,将最近7天没有活跃且非BUG的ISSUE设置标签:inactive
|
# Rule description: Execute the ISSUE once a day at 3 a.m. (GMT+8) and set the non-bug issue that has not been active in the last 7 days to inactive
|
||||||
name: Issue Check Inactive
|
name: Issue Check Inactive
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 19 * * *"
|
- cron: "0 19 * * *"
|
||||||
|
|
||||||
env: # 设置环境变量
|
env: # Set environment variables
|
||||||
TZ: Asia/Shanghai #时区(设置时区可使页面中的`最近更新时间`使用时区时间)
|
TZ: Asia/Shanghai #Time zone (setting the time zone allows the 'Last Updated' on the page to use the time zone)
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
6
.github/workflows/issue-close-inactive.yml
vendored
6
.github/workflows/issue-close-inactive.yml
vendored
@ -1,12 +1,12 @@
|
|||||||
# 规则描述:每天凌晨 4 点 (GMT+8) 执行一次,将最近 30 天没有活跃且非 BUG 的 ISSUE 关闭
|
# RULE DESCRIPTION: EXECUTED ONCE A DAY AT 4 A.M. (GMT+8) TO CLOSE NON-BUG ISSUES THAT HAVE NOT BEEN ACTIVE IN THE LAST 30 DAYS
|
||||||
name: Issue Close Inactive
|
name: Issue Close Inactive
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 20 * * *"
|
- cron: "0 20 * * *"
|
||||||
|
|
||||||
env: # 设置环境变量
|
env: # Set environment variables
|
||||||
TZ: Asia/Shanghai #时区(设置时区可使页面中的`最近更新时间`使用时区时间)
|
TZ: Asia/Shanghai #Time zone (setting the time zone allows the 'Last Updated' on the page to use the time zone)
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
close-issues:
|
close-issues:
|
||||||
|
6
.github/workflows/issue-labeled.yml
vendored
6
.github/workflows/issue-labeled.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
## 规则描述:当 issue 被标记为 help wanted 时,增加评论
|
## Rule description: Add comments when an issue is marked as help wanted
|
||||||
|
|
||||||
name: Issue Labeled
|
name: Issue Labeled
|
||||||
|
|
||||||
@ -6,8 +6,8 @@ on:
|
|||||||
issues:
|
issues:
|
||||||
types: [labeled]
|
types: [labeled]
|
||||||
|
|
||||||
env: # 设置环境变量
|
env: # Set environment variables
|
||||||
TZ: Asia/Shanghai # 时区(设置时区可使页面中的`最近更新时间`使用时区时间)
|
TZ: Asia/Shanghai # Time zone (setting the time zone allows the 'Last Updated' on the page to use the time zone)
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
reply-labeled:
|
reply-labeled:
|
||||||
|
6
.github/workflows/issue-remove-inactive.yml
vendored
6
.github/workflows/issue-remove-inactive.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
# 规则描述:在 issue 没有活跃且尚未被关闭期间,若 issue 作者更新或评论该 ISSUE,则移除其 inactive 标签
|
# Rule description: If an issue author updates or comments on an issue while it is not active and has not been closed, the inactive tag will be removed
|
||||||
name: Issue Remove Inactive
|
name: Issue Remove Inactive
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@ -7,8 +7,8 @@ on:
|
|||||||
issue_comment:
|
issue_comment:
|
||||||
types: [created, edited]
|
types: [created, edited]
|
||||||
|
|
||||||
env: # 设置环境变量
|
env: # Set environment variables
|
||||||
TZ: Asia/Shanghai #时区(设置时区可使页面中的`最近更新时间`使用时区时间)
|
TZ: Asia/Shanghai #Time zone (setting the time zone allows the 'Last Updated' on the page to use the time zone)
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# 规则描述:将需要提供更多细节且暂未关闭的 issue,在 issue 作者评论后,移除 need more details 标签
|
# Rule Description: For issues that need more details and are not yet closed, remove the "need more details" tag after the issue author comments
|
||||||
name: Issue Remove Need More Details
|
name: Issue Remove Need More Details
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@ -7,8 +7,8 @@ on:
|
|||||||
issue_comment:
|
issue_comment:
|
||||||
types: [created, edited]
|
types: [created, edited]
|
||||||
|
|
||||||
env: # 设置环境变量
|
env: # Set environment variables
|
||||||
TZ: Asia/Shanghai #时区(设置时区可使页面中的`最近更新时间`使用时区时间)
|
TZ: Asia/Shanghai #Time zone (setting the time zone allows the 'Last Updated' on the page to use the time zone)
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -6,28 +6,46 @@
|
|||||||
|
|
||||||
# Options for analysis running.
|
# Options for analysis running.
|
||||||
run:
|
run:
|
||||||
|
# Timeout for analysis, e.g. 30s, 5m.
|
||||||
|
# Default: 1m
|
||||||
|
timeout: 5m
|
||||||
# Exit code when at least one issue was found.
|
# Exit code when at least one issue was found.
|
||||||
# Default: 1
|
# Default: 1
|
||||||
issues-exit-code: 2
|
issues-exit-code: 2
|
||||||
|
|
||||||
# Include test files or not.
|
# Include test files or not.
|
||||||
# Default: true
|
# Default: true
|
||||||
tests: false
|
tests: false
|
||||||
|
# List of build tags, all linters use it.
|
||||||
# Which dirs to skip: issues from them won't be reported.
|
# Default: []
|
||||||
# Can use regexp here: `generated.*`, regexp is applied on full path.
|
build-tags: []
|
||||||
# Default value is empty list,
|
# If set, we pass it to "go list -mod={option}". From "go help modules":
|
||||||
# but default dirs are skipped independently of this option's value (see skip-dirs-use-default).
|
# If invoked with -mod=readonly, the go command is disallowed from the implicit
|
||||||
# "/" will be replaced by current OS file path separator to properly work on Windows.
|
# automatic updating of go.mod described above. Instead, it fails when any changes
|
||||||
skip-dirs: []
|
# to go.mod are needed. This setting is most useful to check that go.mod does
|
||||||
|
# not need updates, such as in a continuous integration and testing system.
|
||||||
# Which files to skip: they will be analyzed, but issues from them won't be reported.
|
# If invoked with -mod=vendor, the go command assumes that the vendor
|
||||||
# Default value is empty list,
|
# directory holds the correct copies of dependencies and ignores
|
||||||
# but there is no need to include all autogenerated files,
|
# the dependency descriptions in go.mod.
|
||||||
# we confidently recognize autogenerated files.
|
#
|
||||||
# If it's not please let us know.
|
# Allowed values: readonly|vendor|mod
|
||||||
# "/" will be replaced by current OS file path separator to properly work on Windows.
|
# Default: ""
|
||||||
skip-files: []
|
modules-download-mode: readonly
|
||||||
|
# Allow multiple parallel golangci-lint instances running.
|
||||||
|
# If false, golangci-lint acquires file lock on start.
|
||||||
|
# Default: false
|
||||||
|
allow-parallel-runners: true
|
||||||
|
# Allow multiple golangci-lint instances running, but serialize them around a lock.
|
||||||
|
# If false, golangci-lint exits with an error if it fails to acquire file lock on start.
|
||||||
|
# Default: false
|
||||||
|
allow-serial-runners: true
|
||||||
|
# Define the Go version limit.
|
||||||
|
# Mainly related to generics support since go1.18.
|
||||||
|
# Default: use Go version from the go.mod file, fallback on the env var `GOVERSION`, fallback on 1.17
|
||||||
|
go: '1.20'
|
||||||
|
# Number of operating system threads (`GOMAXPROCS`) that can execute golangci-lint simultaneously.
|
||||||
|
# If it is explicitly set to 0 (i.e. not the default) then golangci-lint will automatically set the value to match Linux container CPU quota.
|
||||||
|
# Default: the number of logical CPUs in the machine
|
||||||
|
concurrency: 4
|
||||||
|
|
||||||
|
|
||||||
# Main linters configurations.
|
# Main linters configurations.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user