Skip to content

Update to klogv2

Update to klogv2 #302

Workflow file for this run

name: CI
on:
pull_request: {}
push:
branches:
- master
jobs:
ci:
runs-on : ubuntu-latest
steps:
- name : Checkout repository
# https://github.com/actions/checkout/releases/tag/v4.1.1
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Go
# https://github.com/actions/setup-go/releases/tag/v5.0.0
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version-file: 'go.mod'
- name: Install env-test
run: go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
- name : Validate
run: make validate
- name : Run tests
run: make test
- name : Build
run: make build