pre-commit: parallel: true commands: format: glob: "*.go" run: test -z "$(gofmt -l {staged_files})" vet: glob: "*.go" run: go vet ./... lint: glob: "*.go" run: golangci-lint run ./... test: glob: "*.go" run: go test ./...