Skip to content

Bump k8s.io/apimachinery from 0.32.0 to 0.32.1 #33

Bump k8s.io/apimachinery from 0.32.0 to 0.32.1

Bump k8s.io/apimachinery from 0.32.0 to 0.32.1 #33

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
packages: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Docker login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: go build -v ./...
- name: Test
run: |
go test ./...