Skip to content

support gRPC communication between primary and secondary mantle controllers #431

support gRPC communication between primary and secondary mantle controllers

support gRPC communication between primary and secondary mantle controllers #431

Workflow file for this run

name: "Main"
on:
pull_request:
push:
branches:
- "main"
jobs:
build:
name: "build"
runs-on: "ubuntu-20.04"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: cache go dependencies
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-${{ hashFiles('go.sum', 'Makefile', 'versions.mk') }}
restore-keys: |
go-
- run: make lint
- run: make test