Skip to content

Bump k8s.io/client-go from 0.30.0 to 0.30.1 #23

Bump k8s.io/client-go from 0.30.0 to 0.30.1

Bump k8s.io/client-go from 0.30.0 to 0.30.1 #23

Workflow file for this run

name: "CI"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: "Unit test"
runs-on: 'ubuntu-latest'
steps:
- name: "[Checkout] repository"
uses: actions/checkout@v4
- name: "[Golang] Install Go"
uses: actions/setup-go@v5
with:
go-version: "1.22.3"
- name: "[Golang] Check go version"
run: go version
- name: "[Golang] Go mod tidy"
run: go mod tidy
- name: "[Golang] Go test"
run: go test ./...