fix(deps): update module sigs.k8s.io/controller-runtime to v0.19.4 #219
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get kubebuilder | |
uses: RyanSiu1995/[email protected] | |
with: | |
version: 4.1.1 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21.x' | |
- name: Display Go version | |
run: go version | |
- name: Build manager library | |
run: go build -o bin/manager github.com/uswitch/nidhogg/cmd/manager | |
- name: Run tests | |
run: go test ./pkg/... ./cmd/... |