chore(k8s): upgrade k8s dependence version from 0.25 to 0.28 #409
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Workflow | |
on: | |
# Run this workflow every time a new commit pushed to upstream/fork repository. | |
# Run workflow on fork repository will help contributors find and resolve issues before sending a PR. | |
push: | |
pull_request: | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22.x | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Check vendors | |
run: hack/verify-vendor.sh | |
- name: Check gofmt | |
run: hack/verify-gofmt.sh | |
- name: Check static code | |
run: hack/verify-staticcheck.sh | |
build: | |
name: compile | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22.x | |
- name: compile | |
run: make build | |
test: | |
name: unit test | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22.x | |
- name: make test | |
run: make test |