From b2d82bddd39d61c81ce14086809d817a1475e0b5 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Fri, 26 Feb 2021 10:45:00 +0000 Subject: Support for JDK 8 (and 11) --- .github/workflows/actions.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index acc9ac2..0a78809 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -4,15 +4,19 @@ on: [push] jobs: test: + strategy: + matrix: + java-version: [8, 11] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: coursier/cache-action@v5 - - name: Set up JDK 11 + - name: Set up JDK ${{ matrix.java-version }} uses: actions/setup-java@v1 with: - java-version: 11 + java-version: ${{ matrix.java-version }} - name: Run tests run: ./mill server.test -- cgit v1.2.3