Skip to content

Bump k8s.io/client-go from 0.25.10 to 0.25.13 #45

Bump k8s.io/client-go from 0.25.10 to 0.25.13

Bump k8s.io/client-go from 0.25.10 to 0.25.13 #45

Workflow file for this run

name: PR Check
on:
pull_request: {}
jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.53.2
args: --timeout=5m
build:
name: Test & Build
runs-on: ubuntu-20.04
steps:
- name: Setup up Go 1.x
uses: actions/setup-go@v4
with:
go-version: "^1.15"
- name: Check out code
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run unit tests
run: make test
- name: Run sanity tests
run: make test-sanity
- name: Build
run: make