Skip to content

Bump k8s.io/client-go from 0.29.4 to 0.30.0 #90

Bump k8s.io/client-go from 0.29.4 to 0.30.0

Bump k8s.io/client-go from 0.29.4 to 0.30.0 #90

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- 'README.md'
push:
paths-ignore:
- 'README.md'
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache: true
id: go
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build -v cmd/manager/main.go
test:
name: Test
needs: build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache: true
id: go
- name: Run tests
run: |
./test.sh