From d602880a585e4dba786fbc4d048ca8136a10e674 Mon Sep 17 00:00:00 2001 From: Ellie Bahadori Date: Mon, 27 Jul 2020 11:00:01 -0700 Subject: [PATCH] Re-introduce JDK matrix for CI pipeline --- .../workflows/continuous-integration-workflow.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 1544bfc4..6fd4efca 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -11,16 +11,16 @@ jobs: build: name: Build runs-on: ubuntu-latest -# strategy: -# matrix: -# jdk: [8, 11] -# fail-fast: false + strategy: + matrix: + jdk: [8, 11] + fail-fast: false steps: - uses: actions/checkout@v2 - - name: Set up JDK 8 + - name: Set up JDK ${{ matrix.jdk }} uses: actions/setup-java@v1 with: - java-version: '8' + java-version: ${{ matrix.jdk }} - name: Cache Gradle packages uses: actions/cache@v2 with: