Skip to content

Comprehensive DevOps Enhancements: Kubernetes Deployment, CI/CD, and Local Development Improvements #19

Comprehensive DevOps Enhancements: Kubernetes Deployment, CI/CD, and Local Development Improvements

Comprehensive DevOps Enhancements: Kubernetes Deployment, CI/CD, and Local Development Improvements #19

Workflow file for this run

name: Go Build
on:
push:
branches:
- main
- develop
- feature/**
pull_request:
branches:
- main
- develop
- feature/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22' # Use the Go version appropriate for your project
- name: Build
run: go build -v ./...