Skip to content

[release-0.20][manual add utilities and options to detect control plane #764

[release-0.20][manual add utilities and options to detect control plane

[release-0.20][manual add utilities and options to detect control plane #764

Workflow file for this run

name: CI Go
on:
pull_request:
branches:
- "main"
- "release-*"
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set up golang
uses: actions/setup-go@v4
with:
go-version: 1.21.7
- 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