Skip to content

Bump k8s.io/apimachinery from 0.26.1 to 0.27.4 #21

Bump k8s.io/apimachinery from 0.26.1 to 0.27.4

Bump k8s.io/apimachinery from 0.26.1 to 0.27.4 #21

Workflow file for this run

name: unit test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
- name: Check docs up to date
run: |
set -euo pipefail
go run cmd/docs/main.go
if [[ `git status --porcelain` ]]; then
echo "Docs are not up-to-date"
exit 1
fi
- name: Test
run: go test -v ./pkg/...