12345678910111213141516171819202122232425262728293031323334 |
- name: gofmt
- on:
- push:
- branches:
- - master
- pull_request:
- paths:
- - '.github/workflows/gofmt.yml'
- - '**.go'
- jobs:
- gofmt:
- name: Run gofmt
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-go@v5
- with:
- go-version: '1.23'
- check-latest: true
- - name: Install goimports
- run: |
- go install golang.org/x/tools/cmd/goimports@latest
- - name: gofmt
- run: |
- if [ "$(find . -iname '*.go' | grep -v '\.pb\.go$' | xargs goimports -l)" ]
- then
- find . -iname '*.go' | grep -v '\.pb\.go$' | xargs goimports -d
- exit 1
- fi
|