feat: 添加IMesssage接口并实现 (#335) #505
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: Goimports Style Fix | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Fix stylings | |
run: | | |
export PATH="$PATH:$GOPATH/bin" | |
GO111MODULE=off go get golang.org/x/tools/cmd/goimports | |
goimports -l -w ./ | |
- name: Commit back | |
if: github.repository_owner == 'Mrs4s' | |
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 "ci(chore): Fix stylings" | |
git push | |
# - name: Test | |
# run: go test -v . |