Skip to content

deps: bump to kube 1.27.6 #589

deps: bump to kube 1.27.6

deps: bump to kube 1.27.6 #589

Workflow file for this run

name: CI Go
on:
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: set up golang
uses: actions/setup-go@v3
with:
go-version: 1.20.10
- name: format
run: ./hack/check-format.sh
- name: fix the version
run: make update-version
- name: go vetting
run: make vet
- name: build
run: |
go version
make all
- name: test
run: make test-unit