Skip to content

Commit

Permalink
ci: 添加代码格式化检测的 GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Penryn committed Oct 25, 2024
1 parent 54b7986 commit 80d660c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Lint

# 定义触发条件:在 `dev` 分支的 push 或 pull request 事件触发工作流
on:
push:
branches:
- dev # 当向 dev 分支推送时触发
pull_request:
branches:
- dev # 当对 dev 分支发起拉取请求时触发

jobs:
lint:
runs-on: ubuntu-latest # 指定工作流运行在最新的 Ubuntu 环境中

steps:
# 第一步:检查出代码
- name: Checkout code
uses: actions/checkout@v2 # 使用 GitHub 提供的 checkout 动作,确保代码在工作流环境中可用

# 第二步:设置 Go 环境
- name: Set up Go
uses: actions/setup-go@v5 # 使用 GitHub 提供的 setup-go 动作,设置 Go 环境
with:
go-version: '1.21' # 指定 Go 版本为 1.21

# 第三步:运行 golangci-lint
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2 # 使用 golangci-lint-action
with:
version: v1.61.0 # 指定 golangci-lint 版本
args: '--config .golangci.yml' # 使用指定的配置文件
4 changes: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

run:
concurrency: 4 # 并行执行的 linter 数量,默认为可用 CPU 数量
deadline: 1m # 分析的最大超时时间,默认为 1 分钟
timeout: 5m # 超时时间
deadline: 5m # 分析的最大超时时间,默认为 5 分钟
timeout: 10m # 超时时间
issues-exit-code: 1 # 如果发现至少一个问题,退出码为 1
tests: true # 包含测试文件进行分析
modules-download-mode: readonly # 防止分析过程中修改 go.mod 文件
Expand Down

0 comments on commit 80d660c

Please sign in to comment.