Skip to content

Bump k8s.io/client-go from 0.28.3 to 0.29.0 #1325

Bump k8s.io/client-go from 0.28.3 to 0.29.0

Bump k8s.io/client-go from 0.28.3 to 0.29.0 #1325

Workflow file for this run

name: Go unit tests
on:
pull_request:
paths:
- '**.go'
- go.mod
- go.sum
- Makefile
jobs:
gotest:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Test
run: go test -v ./...
- name: Verify all binaries can be built
run: make build-all