This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new eb3d1f5 Allow Java early access builds to fail. eb3d1f5 is described below commit eb3d1f5da5f80cf22447cc03ac3fa55c06fb77b3 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jul 22 10:59:54 2020 -0400 Allow Java early access builds to fail. --- .github/workflows/maven.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c723da0..585c590 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -21,9 +21,16 @@ jobs: build: runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: matrix: java: [ 8, 11, 14, 15-ea, 16-ea ] + experimental: [false] + include: + - node: 15-ea + experimental: true + - node: 16-ea + experimental: true steps: - uses: actions/checkout@v1