Skip to content

chore(deps): bump k8s.io/api from 0.31.3 to 0.31.4 #459

chore(deps): bump k8s.io/api from 0.31.3 to 0.31.4

chore(deps): bump k8s.io/api from 0.31.3 to 0.31.4 #459

Workflow file for this run

name: Test, Build and Lint Go Package
on:
push:
paths-ignore:
- 'test_actions/**'
- 'Dockerfile'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Set up Go for Tests
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Test
run: go test ./...
- name: Build
run: go build ./...
- name: Mod Verify
run: go mod verify
- name: Vet
run: go vet ./...