Skip to content

Adding requirement to the root of component status. #288

Adding requirement to the root of component status.

Adding requirement to the root of component status. #288

name: Protoc - Compile
# This workflow will build the go/python/javascript APIs for the modified protos
on:
workflow_dispatch:
push:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Get tags to allow build script to get build version
- name: Build Go Protobuf
run: make build_go
- name: Build Python Protobuf
run: make build_python
- name: Build JavaScript Protobuf
run: make build_js
- name: List API Code
run: |
tree api
tree python
tree javascript