Merge pull request #1172 from cloudevents/automated-dependency-updates #1860
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: [ 'main', 'release-*' ] | |
| pull_request: | |
| branches: [ 'main', 'release-*' ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| format: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version: 1.23 | |
| cache-dependency-path: v2/go.sum | |
| id: go | |
| - 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." |