Skip to content

update k8s.io/client-go to v0.29.8 #53

update k8s.io/client-go to v0.29.8

update k8s.io/client-go to v0.29.8 #53

Workflow file for this run

# every push to a branch:
# - check grammar
# - go fmt
name: Code checks
on:
push:
branches:
jobs:
code_style:
name: Go code style
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: '1.20'
- uses: actions/checkout@v3
- name: code style
run: |
gofmt -d $(find . -type f -iname '*.go')