--- kind: pipeline type: docker name: CI Test Pipeline steps: - name: Go Unit Tests and Linters image: golang:1.22 commands: - go test ./... - go vet ./... - bash -xc './scripts/check_go_fmt.sh group: test-lint trigger: event: - pull_request - push