Skip to content

chore: bump k8s.io/client-go from 0.33.3 to 0.34.3 #26

chore: bump k8s.io/client-go from 0.33.3 to 0.34.3

chore: bump k8s.io/client-go from 0.33.3 to 0.34.3 #26

Workflow file for this run

name: pull-request
on:
- pull_request
jobs:
unit-test:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run unit tests
run: make test
build-test:
strategy:
matrix:
platform: [ubuntu-latest]
arch: [386, amd64, arm, arm64]
runs-on: ${{ matrix.platform }}
steps:
- name: checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Building binary
run: GOARCH=${{ matrix.arch }} make compile