This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Merge pull request #37 from cloudevents/cleanup #36
This file contains hidden or 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: Go Format | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release-*' ] | |
| pull_request: | |
| branches: [ 'master', 'main', 'release-*' ] | |
| jobs: | |
| format: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Go 1.17.x | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.17.x | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Go Format | |
| shell: bash | |
| run: | | |
| gofmt -s -w $(find -type f -name '*.go' -print) | |
| - name: Verify | |
| shell: bash | |
| run: | | |
| if [[ $(git diff-index --name-only HEAD --) ]]; then | |
| echo "Found diffs in:" | |
| git diff-index --name-only HEAD -- | |
| echo "${{ github.repository }} is out of style. Please run go fmt." | |
| exit 1 | |
| fi | |
| echo "${{ github.repository }} is formatted correctly." |