1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-07-22 07:08:44 +08:00
This commit is contained in:
源文雨
2023-02-23 13:20:31 +08:00
parent 8f87a17722
commit 59cce024f7
5 changed files with 150 additions and 1 deletions

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

@@ -0,0 +1,33 @@
name: PushLint
on: [ push ]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@master
with:
go-version: 1.19
- name: Check out code into the Go module directory
uses: actions/checkout@master
- name: golangci-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 "🎨 改进代码样式"
- name: Create Pull Request
if: ${{ !github.head_ref }}
continue-on-error: true
uses: peter-evans/create-pull-request@v4