Skip to content

Allow Context to Configure Default Timeout #1469

Allow Context to Configure Default Timeout

Allow Context to Configure Default Timeout #1469

Workflow file for this run

name: Go Format
on:
push:
branches: [ 'main', 'release-*' ]
pull_request:
branches: [ 'main', 'release-*' ]
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
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."