Skip to content

Fixes #11, add gRPC to/from DB type converter #21

Fixes #11, add gRPC to/from DB type converter

Fixes #11, add gRPC to/from DB type converter #21

Workflow file for this run

name: Build
on:
push:
branches: [ 'main' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install makefile dependencies
run: make deps
- name: Clean
run: make clean
- name: Build
run: make build