From 598a7c889fb01a995b471b2f90d73ac00a62c3bd Mon Sep 17 00:00:00 2001 From: David Barri Date: Fri, 27 May 2022 13:45:18 +1000 Subject: [PATCH] CI upgrade * Bump Java 8 to 11 to avoid a jar reading bug * Bump Java 14 to 17 to test on the latest Java * Disable fail-fast, doesn't match my workflow on this project --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 867252410..8d0b7ecbc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,12 @@ jobs: ci: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: include: - - java: 14 + - java: 17 scala: 2 - - java: 8 + - java: 11 scala: 3 name: Scala v${{ matrix.scala }} / Java v${{ matrix.java }} steps: