Skip to content

Bump k8s.io/api from 0.28.3 to 0.28.4 #908

Bump k8s.io/api from 0.28.3 to 0.28.4

Bump k8s.io/api from 0.28.3 to 0.28.4 #908

Workflow file for this run

name: Pull request checks
on:
push:
branches: [ 'main', 'release-*' ]
pull_request:
branches: [ 'main', 'release-*' ]
jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20','1.21']
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Install make
run: sudo apt -y install make
- name: Run verification and tests
run: make lint test cov-exclude-generated
- name: Report coverage
uses: codecov/[email protected]
with:
files: ./cover.out
flags: unittests
fail_ci_if_error: true