This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push: new a9066d6 Add action to test pr against Java 11 in JVM mode a9066d6 is described below commit a9066d6dd2a5eb19bfc1aa3ec8e8b5a770c6bf91 Author: Luca Burgazzoli <lburgazz...@users.noreply.github.com> AuthorDate: Sun Nov 3 12:03:09 2019 +0100 Add action to test pr against Java 11 in JVM mode --- pr-build-java-11.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pr-build-java-11.yml b/pr-build-java-11.yml new file mode 100644 index 0000000..023b557 --- /dev/null +++ b/pr-build-java-11.yml @@ -0,0 +1,17 @@ +name: Build PR vs Java 11 (JVM) + +on: + pull_request: + branches: + - master +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 11 + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: SourceCheck + run: ./mvnw -V -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn clean verify