fix: 文件重命名错误提示文件已存在 #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mockery | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
mockery: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Mockery | |
run: | | |
go install github.com/vektra/mockery/v2@latest | |
- name: Generate Mocks | |
run: | | |
~/go/bin/mockery | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
name: Commit changes | |
with: | |
commit_message: "chore: update mocks" |