From 85e687bc5ccc6c66b80108935e48fa8b5885f82b Mon Sep 17 00:00:00 2001 From: Yeshwanth D Gunasekaran Date: Wed, 22 Oct 2025 15:25:58 -0400 Subject: [PATCH] Add cloudbuild yaml with lint and test steps (#7) Authored-by: Yeshwanth Gunasekaran --- devops-mcp-server/cloudbuild.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 devops-mcp-server/cloudbuild.yaml diff --git a/devops-mcp-server/cloudbuild.yaml b/devops-mcp-server/cloudbuild.yaml new file mode 100644 index 0000000..23c2777 --- /dev/null +++ b/devops-mcp-server/cloudbuild.yaml @@ -0,0 +1,8 @@ +steps: +- name: 'golangci/golangci-lint:v1.55.2' + args: ['golangci-lint', 'run', './...'] +- name: 'golang:1.22' + args: ['go', 'test', './...'] + +options: + logging: CLOUD_LOGGING_ONLY \ No newline at end of file