From 858a64af5368426e09c8d574e82ab7d0e67eb249 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 23 Jul 2020 11:29:43 -0400 Subject: [PATCH] GitHub builds on Java 8, 11, and 14 (current), allow fails on 15-ea. --- .github/workflows/maven.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 055919f..1ca593d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -21,9 +21,14 @@ jobs: build: runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: matrix: - java: [ 8, 11, 12, 13, 14 ] + java: [ 8, 11, 14 ] + experimental: [false] + include: + - node: 15-ea + experimental: true steps: - uses: actions/checkout@v1