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 cd99e83
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: push

defaults:
run:
shell: bash

jobs:
build:
runs-on: ubuntu-latest
steps:
- 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 cd99e83

Please sign in to comment.