feat: make serviceDesc public #394
Workflow file for this run
This file contains 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: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_test: | |
name: pb-${{ matrix.protobuf_version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
protobuf_version: [27.3] | |
fail-fast: false | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
- name: Setup protoc | |
env: | |
PROTOBUF_VERSION: ${{ matrix.protobuf_version }} | |
run: ./install-protobuf.sh | |
- name: Protoc version | |
run: PATH=$HOME/bin:$PATH protoc --version | |
- name: Build server allgo version | |
run: PATH=$HOME/bin:$PATH make buildserverall |