Skip to content

Commit

Permalink
Add github workflow for sidecar build
Browse files Browse the repository at this point in the history
  • Loading branch information
mpfz0r committed Dec 6, 2023
1 parent 436cba6 commit 8e9ef4c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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

0 comments on commit 8e9ef4c

Please sign in to comment.