Skip to content

feat: add k8s code generator tool and gen client code. #9

feat: add k8s code generator tool and gen client code.

feat: add k8s code generator tool and gen client code. #9

Workflow file for this run

name: CI
env:
VERSION_GO: '1.20'
on:
pull_request:
push:
branches:
- main
jobs:
build:
name: "Build & Test"
if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ env.VERSION_GO }}
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run unit tests
run: make