Skip to content

Bump k8s.io/apimachinery from 0.36.0 to 0.36.2 #32

Bump k8s.io/apimachinery from 0.36.0 to 0.36.2

Bump k8s.io/apimachinery from 0.36.0 to 0.36.2 #32

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Check formatting
run: |
diff=$(gofmt -l .)
if [ -n "$diff" ]; then
echo "Files not formatted:"
echo "$diff"
exit 1
fi
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: go test ./...
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build binary
run: make build
validate-helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Helm
uses: azure/setup-helm@v5
- name: Install kubeconform
run: |
curl -sSL https://github.com/yannh/kubeconform/releases/latest/download/kubeconform-linux-amd64.tar.gz \
| tar xz -C /usr/local/bin kubeconform
- name: Render and validate chart
run: |
helm template test-release ./helm | kubeconform -strict -summary