Skip to content

Handle proto3 optional fields #43

Handle proto3 optional fields

Handle proto3 optional fields #43

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Install Protoc
run: |
sudo apt install -y protobuf-compiler
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
- name: Test
run: make test
- name: Build
run: make build