Skip to content

Bump k8s.io/apimachinery from 0.32.0 to 0.32.1 (#22) #37

Bump k8s.io/apimachinery from 0.32.0 to 0.32.1 (#22)

Bump k8s.io/apimachinery from 0.32.0 to 0.32.1 (#22) #37

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
permissions:
pull-requests: write
contents: write
jobs:
tests:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Checkout
uses: actions/checkout@v4
- name: Validate
run: |
./helper.sh generate
git diff --exit-code
- name: Coverage Report
uses: gwatts/go-coverage-action@v2
id: coverage
with:
coverage-threshold: 80
cover-pkg: ./...
ignore-pattern: |
.*cmd.*
.*mocks.*