Skip to content

Fix TFSchema generation where a OneOf has a lower-case name (#47) #169

Fix TFSchema generation where a OneOf has a lower-case name (#47)

Fix TFSchema generation where a OneOf has a lower-case name (#47) #169

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Install protoc-gen-gogo
run: go install github.com/gogo/protobuf/protoc-gen-gogo
- name: Build
run: make build
- name: Test
run: make test