Skip to content

feat: enhance FastProto with annotation processor. #482

feat: enhance FastProto with annotation processor.

feat: enhance FastProto with annotation processor. #482

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [8, 11, 17, 21]
continue-on-error: ${{ matrix.java == '8' }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build and test
run: mvn -B -Dfastproto.lambda.disabled=false clean test