Skip to content

Merge pull request #634 from wenqiq/topic/wenqi/update-controller-gen #2239

Merge pull request #634 from wenqiq/topic/wenqi/update-controller-gen

Merge pull request #634 from wenqiq/topic/wenqi/update-controller-gen #2239

Workflow file for this run

name: Makefile CI
on:
push:
branches:
- main
- 'v[0-9].[0-9]+.[0-9]+'
pull_request:
branches:
- main
- 'v[0-9].[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Run golangci-lint
run: make golangci
- name: Run build
run: make build
- name: Run test
run: make test