Skip to content

Fix ClassCastException when projections are used with ReactorFacet. #223

Fix ClassCastException when projections are used with ReactorFacet.

Fix ClassCastException when projections are used with ReactorFacet. #223

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
- topic/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '20' ]
compiler: [ 'javac', 'ecj' ]
extra: [ 'none', 'errorprone' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: print Java version
run: java -version
- name: Run tests
run: mvn --batch-mode --no-transfer-progress clean test -P${{ matrix.compiler }} -Dextra=${{ matrix.extra }}