kompose/.github/workflows/go.yml
Prathamesh Musale e5e0d5e117 Generate template placeholders charts and support init containers and jobs (#1)
Part of https://plan.wireit.in/deepstack/browse/VUL-265/

Reviewed-on: LaconicNetwork/kompose#1
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2025-12-04 06:04:04 +00:00

36 lines
623 B
YAML

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
# Avoid noisy outputs like "tput: No value for $TERM and no -T specified"
TERM: dumb
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Build
run: make bin
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
name: "kompose"
path: "kompose"