mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 11:07:40 +08:00
* deprecate CAS in favor of CompareAndSwap * ci: update to go1.19 * 为 Statistics 实现 MarshalJSON 接口 (See 2d79fcc)
40 lines
895 B
YAML
40 lines
895 B
YAML
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 .
|