Skip to content

specify all tags

specify all tags #9

Workflow file for this run

name: CI Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up golang
uses: actions/setup-go@v3
with:
go-version: 1.22.4
- name: Verify modules
run: go mod verify
- name: Verify generated content
run: make verify-generated
- name: Vetting
run: make vet
- name: Build operand
run: make binary
- name: Build operator
run: make binary-rte
- name: Run unit tests
run: make test-unit