Adding requirement to the root of component status. #288
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |