CP-24414: bump k8s.io/api from 0.31.1 to 0.32.0 #206
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GoTest | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.x' | |
cache-dependency-path: go.sum | |
- name: Install dependencies | |
run: | | |
go mod download | |
- name: Run go tests | |
run: | | |
go test -timeout 30s -race -cover ./... |