Skip to content

Adds service annotations to CRD #111

Adds service annotations to CRD

Adds service annotations to CRD #111

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- 'main'
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.20.x']
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Check that all autogenerated files are up to date
run: make manifests generate && git diff --quiet HEAD --
- name: Check that all docs are up to date
run: make docs
- name: Unit Test
run: make test