Skip to content

fix(deps): update module k8s.io/api to v0.36.2 #333

fix(deps): update module k8s.io/api to v0.36.2

fix(deps): update module k8s.io/api to v0.36.2 #333

Workflow file for this run

name: Go CI
on:
push:
branches: [ main ]
pull_request: { }
merge_group:
types: [checks_requested]
env:
HELM_VERSION: 4.2.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Go Format
run: |
make go.fmt
diff=$(git status --porcelain)
if [ -n "$diff" ]
then
echo "Some files are not following the go format ($diff), run gofmt and fix your files."
exit 1
fi
- name: Install License Tool
run: make go.addlicense-install
- name: Check License
run: make go.addlicense-check
- name: Install Helm
uses: azure/setup-helm@v5
with:
version: "${{ env.HELM_VERSION }}"
- name: Helm Add Repo
run: make helm.repos-add
- name: Test
run: make go.test