Skip to content

Add build instructions and installation guide (#172) #564

Add build instructions and installation guide (#172)

Add build instructions and installation guide (#172) #564

Workflow file for this run

name: go
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build:
name: test (helm ${{ matrix.helm-version }})
runs-on: ubuntu-latest
strategy:
matrix:
helm-version:
- v3.20.0
- v4.1.0
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Install Helm
uses: azure/setup-helm@v4.3.1
with:
version: ${{ matrix.helm-version }}
- name: Install Kustomize
uses: syntaqx/setup-kustomize@v1
with:
kustomize-version: 5.8.0
- name: Test
run: |
helm version
helm repo add stable https://charts.helm.sh/stable
CGO_ENABLED=0 go test ./...