Skip to content

Use k8s 1.29 client libs #23

Use k8s 1.29 client libs

Use k8s 1.29 client libs #23

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: '1.20'
id: go
- uses: actions/checkout@v2
- name: Build
run: |
go build -v ./...
- name: Test
run: |
go test -v ./...