Skip to content

Add github workflow for sidecar build #3

Add github workflow for sidecar build

Add github workflow for sidecar build #3

Workflow file for this run

on: push
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sidecar project
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: '1.19'
- name: "compile"
run: |
go version
go mod vendor
make test
make build-all