Skip to content

K8s: add ingress support #64

K8s: add ingress support

K8s: add ingress support #64

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: |
go mod download
- name: Run build
run: make build
- name: Run testing
run: go test -v ./...