Skip to content

revert incompatible api change (#1192) #471

revert incompatible api change (#1192)

revert incompatible api change (#1192) #471

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
cache: 'maven'
- name: Install Protoc
run: |
VERSION=28.2
curl -sL -o protoc.zip https://github.com/protocolbuffers/protobuf/releases/download/v$VERSION/protoc-$VERSION-linux-x86_64.zip
sudo unzip protoc.zip -d /usr/local
- name: Run the Maven verify phase
env:
PROTO_GENERATION: true
REQUIRE_PROTO_UP_TO_DATE: true
run: |
./mvnw clean install
./mvnw javadoc:javadoc -P javadoc # just to check if javadoc is generated