1
0
mirror of https://github.com/fumiama/go-nd-portal.git synced 2026-06-12 04:20:23 +08:00

feat: add lints

This commit is contained in:
源文雨
2025-05-17 16:24:03 +09:00
parent ca72da0c06
commit 0090b5f59f
4 changed files with 154 additions and 1 deletions

36
.github/workflows/push.yml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: 推送检查
on: [ push ]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@master
with:
go-version: "1.24"
- name: Check out code into the Go module directory
uses: actions/checkout@master
- name: Tidy Modules
run: go mod tidy
- name: Run Lint
uses: golangci/golangci-lint-action@master
with:
version: latest
- name: Commit back
if: ${{ !github.head_ref }}
continue-on-error: true
run: |
git config --local user.name 'github-actions[bot]'
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com'
git add --all
git commit -m "chore(lint): 改进代码样式"
- name: Create Pull Request
if: ${{ !github.head_ref }}
continue-on-error: true
uses: peter-evans/create-pull-request@v4