Update module sigs.k8s.io/controller-runtime to v0.19.3 #570
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: go:test | |
on: | |
pull_request: | |
paths-ignore: 'docs/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [ 1.21 ] | |
steps: | |
- name: Checkout commit | |
uses: actions/checkout@v2 | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Execute build | |
run: make install | |
- name: Execute tests | |
run: make test-cov |